本文整理匯總了Java中org.springframework.core.task.SimpleAsyncTaskExecutor.setConcurrencyLimit方法的典型用法代碼示例。如果您正苦於以下問題:Java SimpleAsyncTaskExecutor.setConcurrencyLimit方法的具體用法?Java SimpleAsyncTaskExecutor.setConcurrencyLimit怎麽用?Java SimpleAsyncTaskExecutor.setConcurrencyLimit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.springframework.core.task.SimpleAsyncTaskExecutor
的用法示例。
在下文中一共展示了SimpleAsyncTaskExecutor.setConcurrencyLimit方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: taskExecutor
import org.springframework.core.task.SimpleAsyncTaskExecutor; //導入方法依賴的package包/類
@Bean
public TaskExecutor taskExecutor() {
//https://jira.spring.io/browse/BATCH-2269
final SimpleAsyncTaskExecutor simpleAsyncTaskExecutor = new SimpleAsyncTaskExecutor() {
@Override
protected void doExecute(Runnable task) {
//gets the jobExecution of the configuration thread
final JobExecution jobExecution = JobSynchronizationManager.getContext().getJobExecution();
super.doExecute(() -> {
JobSynchronizationManager.register(jobExecution);
try {
task.run();
} finally {
// JobSynchronizationManager.release();
JobSynchronizationManager.close();
}
});
}
};
simpleAsyncTaskExecutor.setConcurrencyLimit(20);
return simpleAsyncTaskExecutor;
}
開發者ID:commercetools,項目名稱:commercetools-sunrise-data,代碼行數:23,代碼來源:SuggestKeywordsFromNameJobConfiguration.java
示例2: taskExecutor
import org.springframework.core.task.SimpleAsyncTaskExecutor; //導入方法依賴的package包/類
/**
* Create the task executor which will be used for multi-threading
*
* @return TaskExecutor
*/
@Bean
public TaskExecutor taskExecutor() {
SimpleAsyncTaskExecutor asyncTaskExecutor = new SimpleAsyncTaskExecutor("spring_batch");
asyncTaskExecutor.setConcurrencyLimit(SimpleAsyncTaskExecutor.NO_CONCURRENCY);
return asyncTaskExecutor;
}
開發者ID:blackducksoftware,項目名稱:hub-fortify-ssc-integration-service,代碼行數:12,代碼來源:SpringConfiguration.java
示例3: getAsyncExecutor
import org.springframework.core.task.SimpleAsyncTaskExecutor; //導入方法依賴的package包/類
@Override
public Executor getAsyncExecutor() {
SimpleAsyncTaskExecutor executor = new SimpleAsyncTaskExecutor("SimpleExecutor-");
executor.setConcurrencyLimit(10);
return executor;
}
示例4: judgmentIndexingTaskExecutor
import org.springframework.core.task.SimpleAsyncTaskExecutor; //導入方法依賴的package包/類
@Bean
public TaskExecutor judgmentIndexingTaskExecutor() {
SimpleAsyncTaskExecutor taskExecutor = new SimpleAsyncTaskExecutor();
taskExecutor.setConcurrencyLimit(4);
return taskExecutor;
}