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

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

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

ForkJoinPool.registerWorker介绍

[英]Callback from ForkJoinWorkerThread constructor to determine its poolIndex and record in workers array.
[中]从ForkJoinWorkerThread构造函数回调,以确定其poolIndex和workers数组中的记录。

代码示例

代码示例来源:origin: robovm/robovm

/**
 * 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) {
  // Use a placeholder until a useful name can be set in registerWorker
  super("aForkJoinWorkerThread");
  this.pool = pool;
  this.workQueue = pool.registerWorker(this);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * 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) {
  // Use a placeholder until a useful name can be set in registerWorker
  super("aForkJoinWorkerThread");
  this.pool = pool;
  this.workQueue = pool.registerWorker(this);
}

代码示例来源:origin: ibinti/bugvm

/**
 * 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) {
  // Use a placeholder until a useful name can be set in registerWorker
  super("aForkJoinWorkerThread");
  this.pool = pool;
  this.workQueue = pool.registerWorker(this);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * 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) {
  // Use a placeholder until a useful name can be set in registerWorker
  super("aForkJoinWorkerThread");
  this.pool = pool;
  this.workQueue = pool.registerWorker(this);
}

代码示例来源:origin: MobiVM/robovm

/**
 * 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) {
  // Use a placeholder until a useful name can be set in registerWorker
  super("aForkJoinWorkerThread");
  this.pool = pool;
  this.workQueue = pool.registerWorker(this);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * 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) {
  // Use a placeholder until a useful name can be set in registerWorker
  super("aForkJoinWorkerThread");
  this.pool = pool;
  this.workQueue = pool.registerWorker(this);
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * 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) {
  // Use a placeholder until a useful name can be set in registerWorker
  super("aForkJoinWorkerThread");
  this.pool = pool;
  this.workQueue = pool.registerWorker(this);
}

代码示例来源: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类方法