Click or drag to resize

IExecutorServiceSubmitToMembersT Method (CallableT, ICollectionIMember, IMultiExecutionCallback)

Submits task to the specified members.

Namespace:  Hazelcast.Core
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
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