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-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/integration/IntegrationAutoConfiguration.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/integration/IntegrationProperties.java
+14
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@
30
30
* @author Vedran Pavic
31
31
* @author Stephane Nicoll
32
32
* @author Artem Bilan
33
+
* @author Yanming Zhou
33
34
* @since 2.0.0
34
35
*/
35
36
@ConfigurationProperties("spring.integration")
@@ -369,6 +370,11 @@ public static class Poller {
369
370
*/
370
371
privateStringcron;
371
372
373
+
/**
374
+
* Whether to use the application TaskExecutor for default poller.
375
+
*/
376
+
privatebooleanuseApplicationTaskExecutor;
377
+
372
378
publicintgetMaxMessagesPerPoll() {
373
379
returnthis.maxMessagesPerPoll;
374
380
}
@@ -417,6 +423,14 @@ public void setCron(String cron) {
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/integration/IntegrationAutoConfigurationTests.java
0 commit comments