Package hudson.remoting
Interface CallableFilter
Deprecated.
Decorator on
Callable.call()
to filter the execution.- Author:
- Kohsuke Kawaguchi
-
Method Summary
-
Method Details
-
call
Deprecated.This implementation should normally look something like this:V call(Callable c) { doSomePrep(); try { return c.call(); } finally { doSomeCleanUp(); } }
- Throws:
Exception
-
CallableDecorator