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

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

本文整理了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

  1. /**
  2. * Creates a ForkJoinWorkerThread operating in the given pool.
  3. *
  4. * @param pool the pool this thread works in
  5. * @throws NullPointerException if pool is null
  6. */
  7. protected ForkJoinWorkerThread(ForkJoinPool pool) {
  8. super(pool.nextWorkerName());
  9. this.pool = pool;
  10. int k = pool.registerWorker(this);
  11. poolIndex = k;
  12. eventCount = ~k & SMASK; // clear wait count
  13. locallyFifo = pool.locallyFifo;
  14. Thread.UncaughtExceptionHandler ueh = pool.ueh;
  15. if (ueh != null)
  16. setUncaughtExceptionHandler(ueh);
  17. setDaemon(true);
  18. }

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

  1. /**
  2. * Creates a ForkJoinWorkerThread operating in the given pool.
  3. *
  4. * @param pool the pool this thread works in
  5. * @throws NullPointerException if pool is null
  6. */
  7. protected ForkJoinWorkerThread(ForkJoinPool pool) {
  8. super(pool.nextWorkerName());
  9. this.pool = pool;
  10. int k = pool.registerWorker(this);
  11. poolIndex = k;
  12. eventCount = ~k & SMASK; // clear wait count
  13. locallyFifo = pool.locallyFifo;
  14. Thread.UncaughtExceptionHandler ueh = pool.ueh;
  15. if (ueh != null)
  16. setUncaughtExceptionHandler(ueh);
  17. setDaemon(true);
  18. }

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

  1. /**
  2. * Creates a ForkJoinWorkerThread operating in the given pool.
  3. *
  4. * @param pool the pool this thread works in
  5. * @throws NullPointerException if pool is null
  6. */
  7. protected ForkJoinWorkerThread(ForkJoinPool pool) {
  8. super(pool.nextWorkerName());
  9. this.pool = pool;
  10. int k = pool.registerWorker(this);
  11. poolIndex = k;
  12. eventCount = ~k & SMASK; // clear wait count
  13. locallyFifo = pool.locallyFifo;
  14. Thread.UncaughtExceptionHandler ueh = pool.ueh;
  15. if (ueh != null)
  16. setUncaughtExceptionHandler(ueh);
  17. setDaemon(true);
  18. }

相关文章

ForkJoinPool类方法