Interface CallableFilter


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

    Modifier and Type
    Method
    Description
    <V> V
    call(Callable<V> callable)
    Deprecated.
    This implementation should normally look something like this:
  • Method Details

    • 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