注释类型 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)
    从以下版本开始:
    2.0
    作者:
    Lucas Ward
    另请参阅:
    JobExecutionListener