class LogControl.LoggerListListener extends java.lang.Object implements TableListener
| Modifier and Type | Field and Description |
|---|---|
private boolean |
finished |
| Constructor and Description |
|---|
LoggerListListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
finished(TableEvent event)
Indicates in a series of table events that no more events will follow.
|
boolean |
isFinished()
Indicates whether the tree walk is complete or not.
|
boolean |
next(TableEvent event)
Consumes the next table event, which is typically the next row in a
table retrieval operation.
|
private void |
printLogger(TableEvent event) |
public boolean next(TableEvent event)
TableListenernext in interface TableListenerevent - a TableEvent instance.true if this listener wants to receive more events,
otherwise return false. For example, a
TableListener can return false to stop
table retrieval.public void finished(TableEvent event)
TableListenerfinished in interface TableListenerevent - a TableEvent instance that will either indicate an error
(RetrievalEvent.isError() returns true) or success
of the table operation.private void printLogger(TableEvent event)
public boolean isFinished()
TableListenerisFinished in interface TableListenertrue if it is complete, false otherwise.