You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-batch-core/src/main/java/org/springframework/batch/core/step/builder/AbstractTaskletStepBuilder.java
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -199,7 +199,11 @@ public B taskExecutor(TaskExecutor taskExecutor) {
199
199
* in the job repository for this step.
200
200
* @param throttleLimit maximum number of concurrent tasklet executions allowed
201
201
* @return this for fluent chaining
202
+
* @deprecated since 5.0, scheduled for removal in 6.0. Use a pooled
203
+
* {@link TaskExecutor} implemenation with a limited capacity of its task queue
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/main/java/org/springframework/batch/repeat/support/TaskExecutorRepeatTemplate.java
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2006-2007 the original author or authors.
2
+
* Copyright 2006-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -43,6 +43,7 @@
43
43
* any given time, and each thread would have its own transaction).<br>
0 commit comments