本文整理汇总了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;
}