本文整理汇总了Java中org.elasticsearch.threadpool.ThreadPool.scheduleWithFixedDelay方法的典型用法代码示例。如果您正苦于以下问题:Java ThreadPool.scheduleWithFixedDelay方法的具体用法?Java ThreadPool.scheduleWithFixedDelay怎么用?Java ThreadPool.scheduleWithFixedDelay使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.elasticsearch.threadpool.ThreadPool
的用法示例。
在下文中一共展示了ThreadPool.scheduleWithFixedDelay方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: SearchService
import org.elasticsearch.threadpool.ThreadPool; //导入方法依赖的package包/类
public SearchService(ClusterService clusterService, IndicesService indicesService,
ThreadPool threadPool, ScriptService scriptService, BigArrays bigArrays, FetchPhase fetchPhase) {
super(clusterService.getSettings());
this.threadPool = threadPool;
this.clusterService = clusterService;
this.indicesService = indicesService;
this.scriptService = scriptService;
this.bigArrays = bigArrays;
this.queryPhase = new QueryPhase(settings);
this.fetchPhase = fetchPhase;
TimeValue keepAliveInterval = KEEPALIVE_INTERVAL_SETTING.get(settings);
this.defaultKeepAlive = DEFAULT_KEEPALIVE_SETTING.get(settings).millis();
this.keepAliveReaper = threadPool.scheduleWithFixedDelay(new Reaper(), keepAliveInterval, Names.SAME);
defaultSearchTimeout = DEFAULT_SEARCH_TIMEOUT_SETTING.get(settings);
clusterService.getClusterSettings().addSettingsUpdateConsumer(DEFAULT_SEARCH_TIMEOUT_SETTING, this::setDefaultSearchTimeout);
lowLevelCancellation = LOW_LEVEL_CANCELLATION_SETTING.get(settings);
clusterService.getClusterSettings().addSettingsUpdateConsumer(LOW_LEVEL_CANCELLATION_SETTING, this::setLowLevelCancellation);
}
示例2: TableStatsService
import org.elasticsearch.threadpool.ThreadPool; //导入方法依赖的package包/类
@Inject
public TableStatsService(Settings settings,
ThreadPool threadPool,
@StatsUpdateInterval TimeValue updateInterval,
Provider<TransportSQLAction> transportSQLAction) {
super(settings);
this.transportSQLAction = transportSQLAction;
threadPool.scheduleWithFixedDelay(this, updateInterval);
}
示例3: scheduleTask
import org.elasticsearch.threadpool.ThreadPool; //导入方法依赖的package包/类
protected Cancellable scheduleTask(ThreadPool threadPool) {
// it's fine to run it on the scheduler thread, no busy work
return threadPool.scheduleWithFixedDelay(statusChecker, interval, Names.SAME);
}