gpt4 book ai didi

com.sun.grizzly.util.WorkerThreadImpl.()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-22 21:41:05 29 4
gpt4 key购买 nike

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

WorkerThreadImpl.<init>介绍

[英]Create a Thread that will synchronizes/block on Pipeline instance.
[中]创建一个线程来同步/阻塞管道实例。

代码示例

代码示例来源:origin: org.glassfish.external/grizzly-module

/**
   * Creates an instance of WorkerThreadImpl.
   *
   * @param name {@link String}
   * @param initialByteBufferSize initial {@link ByteBuffer} size
   */
  protected WorkerThreadImpl createWorkerThread(String name,
          int initialByteBufferSize) {

    return new WorkerThreadImpl(this, name, initialByteBufferSize);
  }
}

代码示例来源:origin: org.glassfish.external/grizzly-module

public Thread newThread(Runnable r) {
    return new WorkerThreadImpl(new ThreadGroup("Grizzly"),r);
  }
});

代码示例来源:origin: org.glassfish.external/grizzly-module

public Thread newThread(Runnable r) {
      return new WorkerThreadImpl(new ThreadGroup("Grizzly"),r);
    }
});

代码示例来源:origin: com.sun.grizzly/grizzly-http

public Thread newThread(Runnable r) {
      return new WorkerThreadImpl(new ThreadGroup("Grizzly"),r);
    }
});

代码示例来源:origin: com.sun.grizzly/grizzly-http-utils

public Thread newThread(Runnable r) {
    Thread thread = new WorkerThreadImpl(DefaultThreadPool.this,
        name + "-WorkerThread(" +
        workerThreadCounter.getAndIncrement() + ")", r,
        initialByteBufferSize);
    thread.setUncaughtExceptionHandler(DefaultThreadPool.this);
    thread.setPriority(priority);
    return thread;
  }
}

代码示例来源:origin: com.sun.grizzly/grizzly-http

public Thread newThread(Runnable r) {
    return new WorkerThreadImpl(new ThreadGroup("Grizzly"),r);
  }
});

代码示例来源:origin: com.sun.grizzly/grizzly-http-utils

/**
 * Create a new {@link WorkerThread}.
 * @param r a Runabble
 * @return
 */
public Thread newThread(Runnable r){
  WorkerThreadImpl t = new WorkerThreadImpl(threadGroup,r);
  t.setDaemon(true);
  return t;
}

代码示例来源:origin: com.sun.grizzly/grizzly-utils

/**
 * Create a new {@link WorkerThread}.
 * @param r a Runabble
 * @return
 */
public Thread newThread(Runnable r){
  WorkerThreadImpl t = new WorkerThreadImpl(threadGroup, r);
  t.setDaemon(true);
  return t;
}

代码示例来源:origin: org.glassfish.external/grizzly-module

/**
 * Create a new {@link WorkerThread}.
 * @param r a Runabble
 * @return
 */
public Thread newThread(Runnable r){
  WorkerThreadImpl t = new WorkerThreadImpl(threadGroup,r);
  t.setDaemon(true);
  return t;
}

代码示例来源:origin: org.glassfish.external/grizzly-module

public Thread newThread(Runnable r) {
    WorkerThreadImpl workerThread = new WorkerThreadImpl(threadPool,
        threadPool.name + "WorkerThread-"  + threadPool.port + "-" +
        threadPool.workerThreadCounter.getAndIncrement(), r,
        threadPool.initialByteBufferSize);
    workerThread.setByteBufferType(threadPool.byteBufferType);
    workerThread.setPriority(threadPool.priority);
    return workerThread;
  }
}

代码示例来源:origin: com.sun.grizzly/grizzly-http

/**
 * Start using the Controller's internal Thread Pool.
 */
public void start() {
  if (port == 0){
    selectorThreads.put(getSelectorThreadLookupKey(inet, port), this);
  }
  new WorkerThreadImpl("SelectorThread-" + port,this).start();
}

代码示例来源:origin: com.sun.grizzly/grizzly-utils

public Thread newThread(Runnable r) {
    return new WorkerThreadImpl(AbstractThreadPool.this,
      getName() + "-WorkerThread(" +
      nextThreadId() + ")", r,
      getInitialByteBufferSize());
  }
};

代码示例来源:origin: org.shoal/shoal-gms-impl

new WorkerThreadImpl("ControllerWorker", controller).start();

代码示例来源:origin: com.sun.grizzly/grizzly-config

grizzlyListener.configure(listener, habitat);
listeners.add(grizzlyListener);
final Thread thread = new WorkerThreadImpl(new ListenerRunnable(grizzlyListener));
thread.setDaemon(true);
thread.start();

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com