Interface JobLauncher

All Known Subinterfaces:
JobOperator
All Known Implementing Classes:
SimpleJobOperator, TaskExecutorJobLauncher, TaskExecutorJobOperator
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface @Deprecated(since="6.0", forRemoval=true) public interface JobLauncher
Deprecated, for removal: This API element is subject to removal in a future version.
since 6.0 in favor of JobOperator. Scheduled for removal in 6.2 or later.
Simple interface for controlling jobs, including possible ad-hoc executions, based on different runtime identifiers. It is extremely important to note that this interface makes absolutely no guarantees about whether or not calls to it are executed synchronously or asynchronously. The javadocs for specific implementations should be checked to ensure callers fully understand how the job will be run.
Author:
Lucas Ward, Dave Syer, Taeik Lim, Mahmoud Ben Hassine
  • Method Summary

    Modifier and Type
    Method
    Description
    run(Job job, JobParameters jobParameters)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Start a job execution for the given Job and JobParameters .