![](../icons/Hazelcast-IMDG-Logo-Orange_Dark_200px.jpg) | IExecutionCallbackT Interface |
IExecutionCallback allows to asynchronously get notified when the execution is completed,
either successfully or with error.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
Syntaxpublic interface IExecutionCallback<T>
Public Interface IExecutionCallback(Of T)
generic<typename T>
public interface class IExecutionCallback
type IExecutionCallback<'T> = interface end
Type Parameters
- T
The IExecutionCallbackT type exposes the following members.
Methods
| Name | Description |
---|
![Public method Public method](../icons/pubmethod.gif) | OnFailure | Called when an execution is completed with an error. |
![Public method Public method](../icons/pubmethod.gif) | OnResponse | Called when an execution is completed successfully. |
Top
Remarks
IExecutionCallback allows to asynchronously get notified when the execution is completed,
either successfully or with error.
See Also