 | 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 |
---|
 | OnFailure | Called when an execution is completed with an error. |
 | 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