Interface CallbackOperation<T>
-
public interface CallbackOperation<T>Callback for operations. Usually used for conversations with the user that require asynchronous operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinvoke(CallbackChain chain, T context, java.lang.Object value)The operation to be called via chain
-
-
-
Method Detail
-
invoke
void invoke(CallbackChain chain, T context, java.lang.Object value)
The operation to be called via chain- Parameters:
chain- chain of callbacks to be invoked; this method should be called manually by each listenercontext- contextvalue- value to be passed to the chain
-
-