org.apache.coyote.Response.sendHeaders()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(4.4k)|赞(0)|评价(0)|浏览(143)

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

Response.sendHeaders介绍

[英]Signal that we're done with the headers, and body will follow. Any implementation needs to notify ContextManager, to allow interceptors to fix headers.
[中]发出信号,我们已经完成了头球,身体也会跟着。任何实现都需要通知ContextManager,以允许拦截器修复头文件。

代码示例

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

@Override
public int doWrite(ByteBuffer chunk) throws IOException {
  if (!coyoteResponse.isCommitted()) {
    coyoteResponse.sendHeaders();
  }
  return next.doWrite(chunk);
}

代码示例来源:origin: org.glassfish.metro/webservices-extra

res.sendHeaders();

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

doFlush = true;
if (initial) {
  coyoteResponse.sendHeaders();
  initial = false;

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

doFlush = true;
if (initial) {
  coyoteResponse.sendHeaders();
  initial = false;

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Flush bytes or chars contained in the buffer.
 * 
 * @throws IOException An underlying IOException occurred
 */
protected void doFlush(boolean realFlush)
  throws IOException {
  if (suspended)
    return;
  doFlush = true;
  if (initial) {
    coyoteResponse.sendHeaders();
    initial = false;
  }
  if (bb.getLength() > 0) {
    bb.flushBuffer();
  }
  doFlush = false;
  if (realFlush) {
    coyoteResponse.action(ActionCode.CLIENT_FLUSH, 
               coyoteResponse);
    // If some exception occurred earlier, or if some IOE occurred
    // here, notify the servlet with an IOE
    if (coyoteResponse.isExceptionPresent()) {
      throw new ClientAbortException
        (coyoteResponse.getErrorException());
    }
  }
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Flush bytes or chars contained in the buffer.
 * 
 * @throws IOException An underlying IOException occurred
 */
protected void doFlush(boolean realFlush)
  throws IOException {
  if (suspended)
    return;
  doFlush = true;
  if (initial) {
    coyoteResponse.sendHeaders();
    initial = false;
  }
  if (bb.getLength() > 0) {
    bb.flushBuffer();
  }
  doFlush = false;
  if (realFlush) {
    coyoteResponse.action(ActionCode.CLIENT_FLUSH, 
               coyoteResponse);
    // If some exception occurred earlier, or if some IOE occurred
    // here, notify the servlet with an IOE
    if (coyoteResponse.isExceptionPresent()) {
      throw new ClientAbortException
        (coyoteResponse.getErrorException());
    }
  }
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

/**
 * Flush bytes or chars contained in the buffer.
 * 
 * @throws IOException An underlying IOException occurred
 */
protected void doFlush(boolean realFlush)
  throws IOException {
  if (suspended)
    return;
  doFlush = true;
  if (initial) {
    coyoteResponse.sendHeaders();
    initial = false;
  }
  if (bb.getLength() > 0) {
    bb.flushBuffer();
  }
  doFlush = false;
  if (realFlush) {
    coyoteResponse.action(ActionCode.CLIENT_FLUSH, 
               coyoteResponse);
    // If some exception occurred earlier, or if some IOE occurred
    // here, notify the servlet with an IOE
    if (coyoteResponse.isExceptionPresent()) {
      throw new ClientAbortException
        (coyoteResponse.getErrorException());
    }
  }
}

代码示例来源:origin: tomcat/catalina

} else if (state == INITIAL_STATE) {
  coyoteResponse.sendHeaders();

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

doFlush = true;
if (initial) {
  coyoteResponse.sendHeaders();
  initial = false;

代码示例来源:origin: jboss.web/jbossweb

coyoteResponse.sendHeaders();
initial = false;

代码示例来源:origin: jboss.remoting/jboss-remoting

coyoteResponse.sendHeaders();

代码示例来源:origin: org.jboss.web/jbossweb

coyoteResponse.sendHeaders();
initial = false;

代码示例来源:origin: codefollower/Tomcat-Research

doFlush = true;
if (initial) {
  coyoteResponse.sendHeaders();
  initial = false;

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

doFlush = true;
if (initial) {
  coyoteResponse.sendHeaders();
  initial = false;

代码示例来源:origin: org.apache.coyote.springsource/com.springsource.org.apache.coyote.springsource

public int doWrite(ByteChunk chunk, Response res) 
  throws IOException    {
  if (!res.isCommitted()) {
    // Send the connector a request for commit. The connector should
    // then validate the headers, send them (using sendHeader) and 
    // set the filters accordingly.
    res.sendHeaders();
  }
  int len=chunk.getLength();
  byte buf[]=outputMsg.getBuffer();
  // 4 - hardcoded, byte[] marshalling overhead 
  int chunkSize=buf.length - outputMsg.getHeaderLength() - 4;
  int off=0;
  while( len > 0 ) {
    int thisTime=len;
    if( thisTime > chunkSize ) {
      thisTime=chunkSize;
    }
    len-=thisTime;
    
    outputMsg.reset();
    outputMsg.appendByte( AjpConstants.JK_AJP13_SEND_BODY_CHUNK);
    if( log.isTraceEnabled() ) 
      log.trace("doWrite " + off + " " + thisTime + " " + len );
    outputMsg.appendBytes( chunk.getBytes(), chunk.getOffset() + off, thisTime );
    off+=thisTime;
    mc.getSource().send( outputMsg, mc );
  }
  return 0;
}

相关文章

微信公众号

最新文章

更多