IExecutorServiceSubmitToMembersT Method (CallableT, 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.7.1
Syntax

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

Parameters

task
Type: Hazelcast.UtilCallableT
task
members
Type: System.Collections.GenericICollectionIMember
List of members to execute on
callback
Type: Hazelcast.CoreIMultiExecutionCallback
callback

Type Parameters

T
Remarks

Submits task to the specified 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 <IMember, object>) will be called.
See Also

Reference