public interface ClientOpEventListener
| Modifier and Type | Method and Description |
|---|---|
void |
onLookupException(ClientOpEventInformation clientOpInfo)
Called if an exception is raised during the guiding lookup before giving a response to the client.
|
void |
onLookupResult(ClientOpEventInformation clientOpInfo)
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 clientOpInfo)
Called if an exception is raised during the operation execution before giving a response to the client.
|
void |
onOpResult(ClientOpEventInformation clientOpInfo)
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 clientOpInfo)
Called when a failed operation implies to call another operation.
|
ClientOpEventInformation onLookupStart(ClientOpEventTopic topic)
topic - the ClientOpEventTopic of the event.void onLookupException(ClientOpEventInformation clientOpInfo)
clientOpInfo - The ClientOpEventInformation that generated the event.void onLookupResult(ClientOpEventInformation clientOpInfo)
clientOpInfo - The ClientOpEventInformation that generated the event.void onOpStartAnotherOperation(ClientOpEventInformation clientOpInfo)
clientOpInfo - The ClientOpEventInformation that generated the event.ClientOpEventInformation onOpStart(ClientOpEventTopic topic)
topic - the ClientOpEventTopic of the event.void onOpResult(ClientOpEventInformation clientOpInfo)
clientOpInfo - The ClientOpEventInformation that generated the event.void onOpException(ClientOpEventInformation clientOpInfo)
clientOpInfo - The ClientOpEventInformation that generated the event.