com.hazelcast.core
Interface MultiExecutionCallback


public interface MultiExecutionCallback

MultiExecutionCallback allows to get notified when an execution is completed on each member which task is submitted to. After all executions are completed on all submitted members, onComplete(java.util.Map) method is called with map of all results.

See Also:
IExecutorService, ExecutionCallback

Method Summary
 void onComplete(Map<Member,Object> values)
          Called after all executions are completed.
 void onResponse(Member member, Object value)
          Called when an execution is completed on a member.
 

Method Detail

onResponse

void onResponse(Member member,
                Object value)
Called when an execution is completed on a member.

Parameters:
member - member which task is submitted to.
value - result of execution

onComplete

void onComplete(Map<Member,Object> values)
Called after all executions are completed.

Parameters:
values - map of Member-Response pairs


Copyright © 2014 Hazelcast, Inc.. All Rights Reserved.