  | IMapTKey, TValueSubmitToKey Method  | 
 
            Applies the user defined EntryProcessor to the entry mapped by the key.
            Returns immediately with a Task.
            
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
SyntaxTask<Object> SubmitToKey(
	TKey key,
	IEntryProcessor entryProcessor
)
Function SubmitToKey ( 
	key As TKey,
	entryProcessor As IEntryProcessor
) As Task(Of Object)
Task<Object^>^ SubmitToKey(
	TKey key, 
	IEntryProcessor^ entryProcessor
)
abstract SubmitToKey : 
        key : 'TKey * 
        entryProcessor : IEntryProcessor -> Task<Object> 
Parameters
- key
 - Type: TKey
key to be processed - entryProcessor
 - Type: Hazelcast.MapIEntryProcessor
                The user defined IEntryProcessor. This object must have a hazelcast serializable
                EntryProcessor counterpart registered on server side with the actual
                org.hazelcast.map.EntryProcessor implementation.
             
Return Value
Type: 
TaskObjectthe results mapped by each key in the collection
See Also