IN PROGRESS - issue BATCH-894: RFC: move ExitStatus up into Core?
Change Tasklet to use RepeatStatus instead of ExitStatus to signal continuable status
This commit is contained in:
@@ -2,7 +2,7 @@ package org.springframework.batch.repeat;
|
||||
|
||||
public enum RepeatStatus {
|
||||
|
||||
UNKNOWN(true), CONTINUABLE(true), FINISHED(false);
|
||||
CONTINUABLE(true), FINISHED(false);
|
||||
|
||||
private final boolean continuable;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user