Click or drag to resize

IExecutorServiceSubmitToMemberT Method (Runnable, IMember, IExecutionCallbackT)

Submits task to the specified member.

Namespace:  Hazelcast.Core
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
Syntax
void SubmitToMember<T>(
	Runnable task,
	IMember member,
	IExecutionCallback<T> callback
)

Parameters

task
Type: Hazelcast.UtilRunnable
task
member
Type: Hazelcast.CoreIMember
the specified member
callback
Type: Hazelcast.CoreIExecutionCallbackT
callback

Type Parameters

T
Remarks
Submits task to the specified member. Caller will be notified for the result of the task by OnResponse(T) or OnFailure(Exception) .
See Also