IExecutorServiceSubmitToMembers Method (Runnable, ICollectionIMember, IMultiExecutionCallback)Hazelcast .Net Client Class Library
Submits task to the specified members.

Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.8.2
Syntax

void SubmitToMembers(
	Runnable task,
	ICollection<IMember> members,
	IMultiExecutionCallback callback
)

Parameters

task
Type: Hazelcast.UtilRunnable
task
members
Type: System.Collections.GenericICollectionIMember
the specified members
callback
Type: Hazelcast.CoreIMultiExecutionCallback
callback
Remarks

Submits task to the specified members. Caller will be notified for the result of the each task by OnResponse(IMember, Object) , and when all tasks are completed, OnComplete(IDictionaryIMember, Object) will be called.
See Also

Reference