| IExecutorServiceSubmitToKeyOwnerT Method (CallableT, Object) |
Submits task to owner of the specified key and returns a Future
representing that task.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax Task<T> SubmitToKeyOwner<T>(
Callable<T> task,
Object key
)
Function SubmitToKeyOwner(Of T) (
task As Callable(Of T),
key As Object
) As Task(Of T)
generic<typename T>
Task<T>^ SubmitToKeyOwner(
Callable<T>^ task,
Object^ key
)
abstract SubmitToKeyOwner :
task : Callable<'T> *
key : Object -> Task<'T>
Parameters
- task
- Type: Hazelcast.UtilCallableT
task - key
- Type: SystemObject
key
Type Parameters
- T
Return Value
Type:
TaskTa Future representing pending completion of the task
Remarks
Submits task to owner of the specified key and returns a Future
representing that task.
See Also