gpt4 book ai didi

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

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

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

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;
}

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