EventCallback¶
-
public abstract class
EventCallback
implements Callback¶ Implementations of this interface are used to provide the behavior of exposed methods.
- Author
jmoringe
Methods¶
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
InterruptedException – Indicates that the operation was interrupted.
Exception – Can throw anything.
- Returns
A result that should be returned to the remote caller as the result of the calling the method.