- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.getAttachment()
方法的一些代码示例,展示了WorkerThreadImpl.getAttachment()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WorkerThreadImpl.getAttachment()
方法的具体详情如下:
包路径:com.sun.grizzly.util.WorkerThreadImpl
类名称:WorkerThreadImpl
方法名:getAttachment
暂无
代码示例来源:origin: com.sun.grizzly/grizzly-utils
public ThreadAttachment detach() {
ThreadAttachment currentAttachment = getAttachment();
int mode = currentAttachment.getMode();
updateAttachment(mode);
// Re-create a new ByteBuffer
if ((mode & Mode.BYTE_BUFFER) != 0) {
byteBuffer = null;
}
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;
}
代码示例来源:origin: org.glassfish.external/grizzly-module
public ThreadAttachment detach() {
ThreadAttachment currentAttachment = getAttachment();
int mode = currentAttachment.getMode();
updateAttachment(mode);
// Re-create a new ByteBuffer
if ((mode & Mode.BYTE_BUFFER) != 0) {
byteBuffer = ByteBufferFactory.allocate(byteBufferType,
initialByteBufferSize);
}
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;
}
代码示例来源: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;
}
代码示例来源:origin: com.sun.grizzly/grizzly-http-utils
public ThreadAttachment updateAttachment(int mode) {
ThreadAttachment currentAttachment = getAttachment();
currentAttachment.reset();
if ((mode & Mode.BYTE_BUFFER) != 0) {
currentAttachment.setByteBuffer(byteBuffer);
}
if ((mode & Mode.SSL_ENGINE) != 0) {
currentAttachment.setSSLEngine(sslEngine);
}
if ((mode & Mode.INPUT_BB) != 0) {
currentAttachment.setInputBB(inputBB);
}
if ((mode & Mode.OUTPUT_BB) != 0) {
currentAttachment.setOutputBB(outputBB);
}
currentAttachment.setMode(mode);
return currentAttachment;
}
代码示例来源:origin: org.glassfish.external/grizzly-module
public ThreadAttachment updateAttachment(int mode) {
ThreadAttachment currentAttachment = getAttachment();
currentAttachment.reset();
if ((mode & Mode.BYTE_BUFFER) != 0) {
currentAttachment.setByteBuffer(byteBuffer);
}
if ((mode & Mode.SSL_ENGINE) != 0) {
currentAttachment.setSSLEngine(sslEngine);
}
if ((mode & Mode.INPUT_BB) != 0) {
currentAttachment.setInputBB(inputBB);
}
if ((mode & Mode.OUTPUT_BB) != 0) {
currentAttachment.setOutputBB(outputBB);
}
currentAttachment.setMode(mode);
return currentAttachment;
}
代码示例来源:origin: com.sun.grizzly/grizzly-utils
public ThreadAttachment updateAttachment(int mode) {
ThreadAttachment currentAttachment = getAttachment();
currentAttachment.reset();
if ((mode & Mode.BYTE_BUFFER) != 0) {
currentAttachment.setByteBuffer(byteBuffer);
}
if ((mode & Mode.SSL_ENGINE) != 0) {
currentAttachment.setSSLEngine(sslEngine);
}
if ((mode & Mode.INPUT_BB) != 0) {
currentAttachment.setInputBB(inputBB);
}
if ((mode & Mode.OUTPUT_BB) != 0) {
currentAttachment.setOutputBB(outputBB);
}
currentAttachment.setMode(mode);
return currentAttachment;
}
我们正在使用来自 java (jaxws) 的 Exchange Web 服务。这就是问题所在。要获取附件,请执行 GetAttachment soap 调用(足够合乎逻辑:))。这就是问题所在:整个
本文整理了Java中com.sun.grizzly.util.WorkerThread.getAttachment()方法的一些代码示例,展示了WorkerThread.getAttachment()
本文整理了Java中com.sun.grizzly.util.WorkerThreadImpl.getAttachment()方法的一些代码示例,展示了WorkerThreadImpl.getAtta
我将 png 作为附件上传到 CouchDb 数据库。当我通过 Futon 查看它时,它很好,如果我试图通过支架取回它,它就会损坏。我使用了 crade 附带的 crade-test.js 中的一个片
我是一名优秀的程序员,十分优秀!