Annotation Interface AfterTask


@Target({METHOD,ANNOTATION_TYPE}) @Retention(RUNTIME) @Documented @Reflective public @interface AfterTask

TaskExecutionListener.onTaskEnd(TaskExecution).

 public class MyListener {
        @AfterTask
        public void  doSomething(TaskExecution taskExecution) {
    }
 }
 
Author:
Glenn Renfro