Interface BeforeAfterCallable.AllowCallToProceed

Enclosing interface:
BeforeAfterCallable<ValueT>

public static interface BeforeAfterCallable.AllowCallToProceed

The interface containing the proceed() method, which triggers BeforeAfterCaller to proceed with calling BeforeAfterCallable.call().

See Also:
BeforeAfterCallable, BeforeAfterCallable.before(AllowCallToProceed)

Method Summary
 boolean proceed()
          Allow BeforeAfterCallable.call() to be called.
 

Method Detail

proceed

boolean proceed()
Allow BeforeAfterCallable.call() to be called. If proceed guarantees that if it returns true, then call() either has been called or will be called; otherwise, call() will not be called.

Returns:
true if proceed succeeds.