org.apgrid.grpc.ng
Interface NgCallbackInterface


public interface NgCallbackInterface

Provides definitions for callback.
Users who want to use callback must implement this class and create instance of it, then pass it to NgGrpcFunctionHandle.call() or NgGrpcObjectHandle.invoke().


Method Summary
 void callback(java.util.List args)
          The method to execute callback.
Users who want to use callback must implement this method.
 

Method Detail

callback

public void callback(java.util.List args)
The method to execute callback.
Users who want to use callback must implement this method.

Parameters:
args - arguments for callback.