EventCallback

public abstract class EventCallback implements Callback

Implementations of this interface are used to provide the behavior of exposed methods.

Author

jmoringe

Methods

internalInvoke

public Event internalInvoke(Event request)

invoke

public abstract Event invoke(Event request)

This method is called to invoke the actual behavior of an exposed method. Implementing user code must not swallow interruption state. Instead, it has to be passed to the outside world through an InterruptedException.

Parameters

request – The argument passed to the associated method by the remote caller.

Throws
Returns

A result that should be returned to the remote caller as the result of the calling the method.