gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-26 23:43:05 31 4
gpt4 key购买 nike

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

WorkerThread.setOutputBB介绍

[英]Set the encrypted ByteBuffer used to handle response.
[中]设置用于处理响应的加密字节缓冲区。

代码示例

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

private boolean associateWithThread(ByteBuffer buffer) {
  final Thread currentThread = Thread.currentThread();
  if (currentThread instanceof WorkerThread) {
    ((WorkerThread) currentThread).setOutputBB(buffer);
    return true;
  }
  return false;
}

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

public void setSecuredOutputByteBuffer(ByteBuffer securedOutputByteBuffer) {
  workerThread().setOutputBB(securedOutputByteBuffer);
}

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

public void setSecuredOutputByteBuffer(ByteBuffer securedOutputByteBuffer) {
  workerThread().setOutputBB(securedOutputByteBuffer);
}

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

workerThread.setOutputBB(outputBB);  
workerThread.setByteBuffer(byteBuffer);

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

workerThread.setOutputBB(outputBB);  
workerThread.setByteBuffer(byteBuffer);

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

workerThread.setOutputBB(outputBB);  
workerThread.setByteBuffer(byteBuffer);

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

private static void swapEncryptOutBuffer(final WorkerThread workerThread,
                     final SSLAsyncOutputBuffer outputBuffer,
                     final SSLEngine engine) {
  ByteBuffer tmp = allocate(engine);
  outputBuffer.setOutputBB(workerThread.getOutputBB());
  workerThread.setOutputBB(tmp);
  outputBuffer.setSSLEngine(engine);
}

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

if (preProcessor == null) {
  preProcessor = new SSLWritePreProcessor(sslEngine, workerThread.getOutputBB());
  workerThread.setOutputBB(null);
  attributes.setAttribute(SSL_WRITE_PREPROCESSOR, preProcessor);

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

SSLUtils.unwrapAll(byteBuffer, inputBB, sslEngine);
workerThread.setInputBB(inputBB);
workerThread.setOutputBB(outputBB);
workerThread.setByteBuffer(byteBuffer);

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

workerThread.setSSLEngine(sslEngine);
workerThread.setInputBB(inputBB);
workerThread.setOutputBB(outputBB);

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