本文整理汇总了Java中org.elasticsearch.common.unit.TimeValue.timeValueNanos方法的典型用法代码示例。如果您正苦于以下问题:Java TimeValue.timeValueNanos方法的具体用法?Java TimeValue.timeValueNanos怎么用?Java TimeValue.timeValueNanos使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.elasticsearch.common.unit.TimeValue
的用法示例。
在下文中一共展示了TimeValue.timeValueNanos方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getMaxTaskWaitTime
import org.elasticsearch.common.unit.TimeValue; //导入方法依赖的package包/类
/**
* Returns the waiting time of the first task in the queue
*/
public TimeValue getMaxTaskWaitTime() {
if (getQueue().size() == 0) {
return NO_WAIT_TIME_VALUE;
}
long now = System.nanoTime();
long oldestCreationDateInNanos = now;
for (Runnable queuedRunnable : getQueue()) {
if (queuedRunnable instanceof PrioritizedRunnable) {
oldestCreationDateInNanos = Math.min(oldestCreationDateInNanos,
((PrioritizedRunnable) queuedRunnable).getCreationDateInNanos());
}
}
return TimeValue.timeValueNanos(now - oldestCreationDateInNanos);
}
示例2: sourceThrottling
import org.elasticsearch.common.unit.TimeValue; //导入方法依赖的package包/类
public synchronized TimeValue sourceThrottling() {
return TimeValue.timeValueNanos(sourceThrottlingInNanos);
}
示例3: targetThrottling
import org.elasticsearch.common.unit.TimeValue; //导入方法依赖的package包/类
public synchronized TimeValue targetThrottling() {
return TimeValue.timeValueNanos(targetThrottleTimeInNanos);
}
示例4: throttleTime
import org.elasticsearch.common.unit.TimeValue; //导入方法依赖的package包/类
/**
* Total time recoveries waited due to throttling
*/
public TimeValue throttleTime() {
return TimeValue.timeValueNanos(throttleTimeInNanos.get());
}
示例5: throttleTime
import org.elasticsearch.common.unit.TimeValue; //导入方法依赖的package包/类
public TimeValue throttleTime() {
return TimeValue.timeValueNanos(throttleTimeInNanos);
}