本文整理匯總了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);
}