![](../icons/Hazelcast-IMDG-Logo-Orange_Dark_200px.jpg) | IMultiExecutionCallback Interface |
IMultiExecutionCallback allows to get notified when an execution is completed on each member
which task is submitted to.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
Syntaxpublic interface IMultiExecutionCallback
Public Interface IMultiExecutionCallback
public interface class IMultiExecutionCallback
type IMultiExecutionCallback = interface end
The IMultiExecutionCallback type exposes the following members.
Methods
| Name | Description |
---|
![Public method Public method](../icons/pubmethod.gif) | OnComplete | Called after all executions are completed. |
![Public method Public method](../icons/pubmethod.gif) | OnResponse | Called when an execution is completed on a member. |
Top
Remarks
IMultiExecutionCallback allows to get notified when an execution is completed on each member
which task is submitted to. After all executions are completed on all submitted members,
OnComplete(IDictionaryIMember, Object)
method is called with map of all results.
See Also