Submits task to owner of the specified key.
Namespace: Hazelcast.CoreAssembly: HazelcastClient3x (in HazelcastClient3x.dll) Version: 3.3.0.12
void SubmitToKeyOwner<V>(
Runnable task,
Object key,
IExecutionCallback<V> callback
)
Sub SubmitToKeyOwner(Of V) (
task As Runnable,
key As Object,
callback As IExecutionCallback(Of V)
)
generic<typename V>
void SubmitToKeyOwner(
Runnable^ task,
Object^ key,
IExecutionCallback<V>^ callback
)
abstract SubmitToKeyOwner :
task : Runnable *
key : Object *
callback : IExecutionCallback<'V> -> unit
Parameters
- task
- Type: Hazelcast.UtilRunnable
task - key
- Type: SystemObject
- callback
- Type: Hazelcast.CoreIExecutionCallbackV
callback
Type Parameters
- V
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