Annotation Type AfterJob


  • @Retention(RUNTIME)
    @Target(METHOD)
    public @interface AfterJob
    Marks a method to be called after a Job has completed. Annotated methods will be called regardless of the status of the JobExecution.

    Expected signature: void afterJob(JobExecution jobExecution)
    Since:
    2.0
    Author:
    Lucas Ward
    See Also:
    JobExecutionListener