|
2 | 2 | |Name | Default | Description |
3 | 3 |
|
4 | 4 | |spring.cloud.task.batch.command-line-runner-order | `0` | The order for the {@code CommandLineRunner} used to run batch jobs when {@code spring.cloud.task.batch.fail-on-job-failure=true}. Defaults to 0 (same as the {@link org.springframework.boot.autoconfigure.batch.JobLauncherCommandLineRunner}). |
| 5 | +|spring.cloud.task.batch.events.chunk-event-binding-name | `chunk-events` | |
5 | 6 | |spring.cloud.task.batch.events.chunk-order | | Establishes the default {@link Ordered} precedence for {@link org.springframework.batch.core.ChunkListener}. |
6 | 7 | |spring.cloud.task.batch.events.chunk.enabled | `true` | This property is used to determine if a task should listen for batch chunk events. |
7 | 8 | |spring.cloud.task.batch.events.enabled | `true` | This property is used to determine if a task should listen for batch events. |
| 9 | +|spring.cloud.task.batch.events.item-process-event-binding-name | `item-process-events` | |
8 | 10 | |spring.cloud.task.batch.events.item-process-order | | Establishes the default {@link Ordered} precedence for {@link org.springframework.batch.core.ItemProcessListener}. |
9 | 11 | |spring.cloud.task.batch.events.item-process.enabled | `true` | This property is used to determine if a task should listen for batch item processed events. |
| 12 | +|spring.cloud.task.batch.events.item-read-event-binding-name | `item-read-events` | |
10 | 13 | |spring.cloud.task.batch.events.item-read-order | | Establishes the default {@link Ordered} precedence for {@link org.springframework.batch.core.ItemReadListener}. |
11 | 14 | |spring.cloud.task.batch.events.item-read.enabled | `true` | This property is used to determine if a task should listen for batch item read events. |
| 15 | +|spring.cloud.task.batch.events.item-write-event-binding-name | `item-write-events` | |
12 | 16 | |spring.cloud.task.batch.events.item-write-order | | Establishes the default {@link Ordered} precedence for {@link org.springframework.batch.core.ItemWriteListener}. |
13 | 17 | |spring.cloud.task.batch.events.item-write.enabled | `true` | This property is used to determine if a task should listen for batch item write events. |
| 18 | +|spring.cloud.task.batch.events.job-execution-event-binding-name | `job-execution-events` | |
14 | 19 | |spring.cloud.task.batch.events.job-execution-order | | Establishes the default {@link Ordered} precedence for {@link org.springframework.batch.core.JobExecutionListener}. |
15 | 20 | |spring.cloud.task.batch.events.job-execution.enabled | `true` | This property is used to determine if a task should listen for batch job execution events. |
| 21 | +|spring.cloud.task.batch.events.skip-event-binding-name | `skip-events` | |
16 | 22 | |spring.cloud.task.batch.events.skip-order | | Establishes the default {@link Ordered} precedence for {@link org.springframework.batch.core.SkipListener}. |
17 | 23 | |spring.cloud.task.batch.events.skip.enabled | `true` | This property is used to determine if a task should listen for batch skip events. |
| 24 | +|spring.cloud.task.batch.events.step-execution-event-binding-name | `step-execution-events` | |
18 | 25 | |spring.cloud.task.batch.events.step-execution-order | | Establishes the default {@link Ordered} precedence for {@link org.springframework.batch.core.StepExecutionListener}. |
19 | 26 | |spring.cloud.task.batch.events.step-execution.enabled | `true` | This property is used to determine if a task should listen for batch step execution events. |
| 27 | +|spring.cloud.task.batch.events.task-event-binding-name | `task-events` | |
20 | 28 | |spring.cloud.task.batch.fail-on-job-failure | `false` | This property is used to determine if a task app should return with a non zero exit code if a batch job fails. |
21 | 29 | |spring.cloud.task.batch.fail-on-job-failure-poll-interval | `5000` | Fixed delay in milliseconds that Spring Cloud Task will wait when checking if {@link org.springframework.batch.core.JobExecution}s have completed, when spring.cloud.task.batch.failOnJobFailure is set to true. Defaults to 5000. |
22 | 30 | |spring.cloud.task.batch.job-names | | Comma-separated list of job names to execute on startup (for instance, `job1,job2`). By default, all Jobs found in the context are executed. @deprecated use spring.batch.job.names instead of spring.cloud.task.batch.jobNames. |
|
0 commit comments