Submits task to owner of the specified key.
Namespace: Hazelcast.CoreAssembly: HazelcastClient3x (in HazelcastClient3x.dll) Version: 3.3.0.12
void SubmitToKeyOwner<T>(
Callable<T> task,
Object key,
IExecutionCallback<T> callback
)
Sub SubmitToKeyOwner(Of T) (
task As Callable(Of T),
key As Object,
callback As IExecutionCallback(Of T)
)
generic<typename T>
void SubmitToKeyOwner(
Callable<T>^ task,
Object^ key,
IExecutionCallback<T>^ callback
)
abstract SubmitToKeyOwner :
task : Callable<'T> *
key : Object *
callback : IExecutionCallback<'T> -> unit
Parameters
- task
- Type: Hazelcast.UtilCallableT
task - key
- Type: SystemObject
- callback
- Type: Hazelcast.CoreIExecutionCallbackT
callback
Type Parameters
- T
Submits task to owner of the specified key. Caller will be notified for the result of the task by
IExecutionCallback<V>.OnResponse(object)
or
IExecutionCallback<V>
.OnFailure(System.Exception)
.
Reference