当前位置: 首页>>代码示例>>Java>>正文


Java ThreadPool.scheduleWithFixedDelay方法代码示例

本文整理汇总了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);
}
 
开发者ID:justor,项目名称:elasticsearch_my,代码行数:23,代码来源:SearchService.java

示例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);
}
 
开发者ID:baidu,项目名称:Elasticsearch,代码行数:10,代码来源:TableStatsService.java

示例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);
}
 
开发者ID:justor,项目名称:elasticsearch_my,代码行数:5,代码来源:IndexingMemoryController.java


注:本文中的org.elasticsearch.threadpool.ThreadPool.scheduleWithFixedDelay方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。