java.util.concurrent.ForkJoinPool.nextWorkerName()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(102)

本文整理了Java中java.util.concurrent.ForkJoinPool.nextWorkerName()方法的一些代码示例,展示了ForkJoinPool.nextWorkerName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ForkJoinPool.nextWorkerName()方法的具体详情如下:
包路径:java.util.concurrent.ForkJoinPool
类名称:ForkJoinPool
方法名:nextWorkerName

ForkJoinPool.nextWorkerName介绍

[英]Callback from ForkJoinWorkerThread constructor to assign a public name
[中]从ForkJoinWorkerThread构造函数回调以分配公共名称

代码示例

代码示例来源:origin: org.codehaus.jsr166-mirror/jsr166

/**
 * Creates a ForkJoinWorkerThread operating in the given pool.
 *
 * @param pool the pool this thread works in
 * @throws NullPointerException if pool is null
 */
protected ForkJoinWorkerThread(ForkJoinPool pool) {
  super(pool.nextWorkerName());
  this.pool = pool;
  int k = pool.registerWorker(this);
  poolIndex = k;
  eventCount = ~k & SMASK; // clear wait count
  locallyFifo = pool.locallyFifo;
  Thread.UncaughtExceptionHandler ueh = pool.ueh;
  if (ueh != null)
    setUncaughtExceptionHandler(ueh);
  setDaemon(true);
}

代码示例来源:origin: jtulach/bck2brwsr

/**
 * Creates a ForkJoinWorkerThread operating in the given pool.
 *
 * @param pool the pool this thread works in
 * @throws NullPointerException if pool is null
 */
protected ForkJoinWorkerThread(ForkJoinPool pool) {
  super(pool.nextWorkerName());
  this.pool = pool;
  int k = pool.registerWorker(this);
  poolIndex = k;
  eventCount = ~k & SMASK; // clear wait count
  locallyFifo = pool.locallyFifo;
  Thread.UncaughtExceptionHandler ueh = pool.ueh;
  if (ueh != null)
    setUncaughtExceptionHandler(ueh);
  setDaemon(true);
}

代码示例来源:origin: org.apidesign.bck2brwsr/emul

/**
 * Creates a ForkJoinWorkerThread operating in the given pool.
 *
 * @param pool the pool this thread works in
 * @throws NullPointerException if pool is null
 */
protected ForkJoinWorkerThread(ForkJoinPool pool) {
  super(pool.nextWorkerName());
  this.pool = pool;
  int k = pool.registerWorker(this);
  poolIndex = k;
  eventCount = ~k & SMASK; // clear wait count
  locallyFifo = pool.locallyFifo;
  Thread.UncaughtExceptionHandler ueh = pool.ueh;
  if (ueh != null)
    setUncaughtExceptionHandler(ueh);
  setDaemon(true);
}

相关文章

ForkJoinPool类方法