public class EmptyClientOpEventListener extends java.lang.Object implements ClientOpEventListener
Java class represents an empty event listener for receiving client operation events.| Constructor and Description |
|---|
EmptyClientOpEventListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
onLookupException(ClientOpEventInformation info)
Called if an exception is raised during the guiding lookup before giving a response to the client.
|
void |
onLookupResult(ClientOpEventInformation info)
Called when the guiding lookup result is received.
|
ClientOpEventInformation |
onLookupStart(ClientOpEventTopic topic)
Called before the guiding lookup only if the the guiding lookup is the first action of the client operation.
|
void |
onOpException(ClientOpEventInformation info)
Called if an exception is raised during the operation execution before giving a response to the client.
|
void |
onOpResult(ClientOpEventInformation info)
Called when the operation result is received.
|
ClientOpEventInformation |
onOpStart(ClientOpEventTopic topic)
Called when an operation start only if the first operation is not a guiding lookup.
|
void |
onOpStartAnotherOperation(ClientOpEventInformation info)
Called when a failed operation implies to call another operation.
|
public void onLookupException(ClientOpEventInformation info)
ClientOpEventListeneronLookupException in interface ClientOpEventListenerinfo - The ClientOpEventInformation that generated the event.public ClientOpEventInformation onLookupStart(ClientOpEventTopic topic)
ClientOpEventListeneronLookupStart in interface ClientOpEventListenertopic - the ClientOpEventTopic of the event.public void onOpException(ClientOpEventInformation info)
ClientOpEventListeneronOpException in interface ClientOpEventListenerinfo - The ClientOpEventInformation that generated the event.public void onOpResult(ClientOpEventInformation info)
ClientOpEventListeneronOpResult in interface ClientOpEventListenerinfo - The ClientOpEventInformation that generated the event.public ClientOpEventInformation onOpStart(ClientOpEventTopic topic)
ClientOpEventListeneronOpStart in interface ClientOpEventListenertopic - the ClientOpEventTopic of the event.public void onLookupResult(ClientOpEventInformation info)
ClientOpEventListeneronLookupResult in interface ClientOpEventListenerinfo - The ClientOpEventInformation that generated the event.public void onOpStartAnotherOperation(ClientOpEventInformation info)
ClientOpEventListeneronOpStartAnotherOperation in interface ClientOpEventListenerinfo - The ClientOpEventInformation that generated the event.