Interface CallbackChain<T>
-
- All Known Implementing Classes:
DefaultCallbackChain
public interface CallbackChain<T>Interface for callback chains.- See Also:
CallbackOperation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoChain(T context, java.lang.Object value)Method used to invoke the next operation in the chain.
-
-
-
Method Detail
-
doChain
void doChain(T context, java.lang.Object value)
Method used to invoke the next operation in the chain.- Parameters:
context- contextvalue- value to be passed to the chain
-
-