- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.createByteBuffer()
方法的一些代码示例,展示了WorkerThreadImpl.createByteBuffer()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WorkerThreadImpl.createByteBuffer()
方法的具体详情如下:
包路径:com.sun.grizzly.util.WorkerThreadImpl
类名称:WorkerThreadImpl
方法名:createByteBuffer
[英]Allocate a ByteBuffer if the current instance is null;
[中]如果当前实例为空,则分配字节缓冲区;
代码示例来源:origin: com.sun.grizzly/grizzly-http-utils
@Override
protected void beforeExecute(Thread t, Runnable r) {
((WorkerThreadImpl) t).createByteBuffer(false);
}
代码示例来源:origin: com.sun.grizzly/grizzly-utils
/**
* Method invoked prior to executing the given Runnable in the
* given thread. This method is invoked by thread <tt>t</tt> that
* will execute task <tt>r</tt>, and may be used to re-initialize
* ThreadLocals, or to perform logging.
*
* <p>This implementation does nothing, but may be customized in
* subclasses. Note: To properly nest multiple overridings, subclasses
* should generally invoke <tt>super.beforeExecute</tt> at the end of
* this method.
*
* @param t the thread that will run task r.
* @param r the task that will be executed.
*/
protected void beforeExecute(Thread t, Runnable r) {
if (t instanceof WorkerThreadImpl)
((WorkerThreadImpl) t).createByteBuffer(false);
}
代码示例来源:origin: com.sun.grizzly/grizzly-http-utils
public ThreadAttachment detach() {
ThreadAttachment currentAttachment = getAttachment();
int mode = currentAttachment.getMode();
updateAttachment(mode);
// Re-create a new ByteBuffer
if ((mode & Mode.BYTE_BUFFER) != 0) {
createByteBuffer(true);
}
if ((mode & Mode.SSL_ENGINE) != 0) {
sslEngine = null;
}
if ((mode & Mode.INPUT_BB) != 0) {
inputBB = null;
}
if ((mode & Mode.OUTPUT_BB) != 0) {
outputBB = null;
}
// Switch to the new ThreadAttachment.
this.threadAttachment = null;
currentAttachment.deassociate();
return currentAttachment;
}
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.updateAttachment()方法的一些代码示例,展示了WorkerThreadImpl.upda
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.()方法的一些代码示例,展示了WorkerThreadImpl.()的具体用法。这些代码示例主要来源于G
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.setByteBufferType()方法的一些代码示例,展示了WorkerThreadImpl.set
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.createByteBuffer()方法的一些代码示例,展示了WorkerThreadImpl.crea
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.getAttachment()方法的一些代码示例,展示了WorkerThreadImpl.getAtta
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.setDaemon()方法的一些代码示例,展示了WorkerThreadImpl.setDaemon()
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.reset()方法的一些代码示例,展示了WorkerThreadImpl.reset()的具体用法。这些
我是一名优秀的程序员,十分优秀!