Interface CallableFilter


  • @Deprecated
    public interface CallableFilter
    Deprecated.
    Decorator on Callable.call() to filter the execution.
    Author:
    Kohsuke Kawaguchi
    • Method Detail

      • call

        <V> V call​(Callable<V> callable)
            throws Exception
        Deprecated.
        This implementation should normally look something like this:
         V call(Callable c) {
             doSomePrep();
             try {
                 return c.call();
             } finally {
                 doSomeCleanUp();
             }
         }
         
        Throws:
        Exception