| 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.9.3
Syntax public interface IMultiExecutionCallback
Public Interface IMultiExecutionCallback
public interface class IMultiExecutionCallback
type IMultiExecutionCallback = interface end
The IMultiExecutionCallback type exposes the following members.
Methods
| Name | Description |
---|
| OnComplete | Called after all executions are completed. |
| OnResponse | Called when an execution is completed on a member. |
TopRemarks
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