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

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

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

Request.getBytesRead介绍

暂无

代码示例

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

  1. public long getRequestBytesReceived() {
  2. return req.getBytesRead();
  3. }

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

  1. public long getRequestBytesReceived() {
  2. return req.getBytesRead();
  3. }

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

  1. public long getRequestBytesReceived() {
  2. return req.getBytesRead();
  3. }

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

  1. public long getRequestBytesReceived() {
  2. return req.getBytesRead();
  3. }

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

  1. public long getRequestBytesReceived() {
  2. return req.getBytesRead();
  3. }

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

  1. public long getRequestBytesReceived() {
  2. return req.getBytesRead();
  3. }

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

  1. public long getRequestBytesReceived() {
  2. return req.getBytesRead();
  3. }

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

  1. public long getRequestBytesReceived() {
  2. return req.getBytesRead();
  3. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getBytesWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getBytesWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getBytesWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

相关文章

Request类方法