Click or drag to resize

IExecutorService.SubmitToMembers<T> Method (Callable<T>, ICollection<IMember>, IMultiExecutionCallback)

Submits task to the specified members.

Namespace:  Hazelcast.Core
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax
void SubmitToMembers<T>(
	Callable<T> task,
	ICollection<IMember> members,
	IMultiExecutionCallback callback
)

Parameters

task
Type: Hazelcast.Util.Callable<T>
task
members
Type: System.Collections.Generic.ICollection<IMember>
List of members to execute on
callback
Type: Hazelcast.Core.IMultiExecutionCallback
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