Submits task to the all cluster members.
Namespace: Hazelcast.CoreAssembly: HazelcastClient3x (in HazelcastClient3x.dll) Version: 3.3.0.12
void SubmitToAllMembers(
Runnable task,
IMultiExecutionCallback callback
)
Sub SubmitToAllMembers (
task As Runnable,
callback As IMultiExecutionCallback
)
void SubmitToAllMembers(
Runnable^ task,
IMultiExecutionCallback^ callback
)
abstract SubmitToAllMembers :
task : Runnable *
callback : IMultiExecutionCallback -> unit
Parameters
- task
- Type: Hazelcast.UtilRunnable
task - callback
- Type: Hazelcast.CoreIMultiExecutionCallback
callback
Submits task to the all cluster members. Caller will be notified for the result of the each task by
IMultiExecutionCallback.OnResponse(IMember, object)
, and when all tasks are completed,
IMultiExecutionCallback.OnComplete(System.Collections.Generic.IDictionary
<K, V>)
will be called.
Reference