com.oath.cyclops.async.wait.YieldWait类的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(0.7k)|赞(0)|评价(0)|浏览(156)

本文整理了Java中com.oath.cyclops.async.wait.YieldWait类的一些代码示例,展示了YieldWait类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YieldWait类的具体详情如下:
包路径:com.oath.cyclops.async.wait.YieldWait
类名称: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<>();
}

相关文章

YieldWait类方法