本文整理了Java中com.oath.cyclops.async.wait.YieldWait
类的一些代码示例,展示了YieldWait
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YieldWait
类的具体详情如下:
包路径:com.oath.cyclops.async.wait.YieldWait
类名称:YieldWait
[英]Repeatedly retry to take or offer element to Queue if full or data unavailable, calling Thread.yield in between attempts
[中]如果数据已满或不可用,则反复尝试获取或提供元素到队列,调用线程。在尝试之间让步
代码示例来源:origin: aol/cyclops
/**
* @return YieldWait strategy {@see YieldWait}
*/
static <T> YieldWait<T> yieldWait() {
return new YieldWait<>();
}
代码示例来源:origin: com.oath.cyclops/cyclops
/**
* @return YieldWait strategy {@see YieldWait}
*/
static <T> YieldWait<T> yieldWait() {
return new YieldWait<>();
}
内容来源于网络,如有侵权,请联系作者删除!