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

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

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

Request.recycle介绍

暂无

代码示例

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. lastValid = 0;
  9. pos = 0;
  10. lastActiveFilter = -1;
  11. parsingHeader = true;
  12. swallowInput = true;
  13. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. inputStream = null;
  9. lastValid = 0;
  10. pos = 0;
  11. lastActiveFilter = -1;
  12. parsingHeader = true;
  13. swallowInput = true;
  14. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. inputStream = null;
  9. lastValid = 0;
  10. pos = 0;
  11. lastActiveFilter = -1;
  12. parsingHeader = true;
  13. swallowInput = true;
  14. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. socket = 0;
  9. lastValid = 0;
  10. pos = 0;
  11. lastActiveFilter = -1;
  12. parsingHeader = true;
  13. swallowInput = true;
  14. available = false;
  15. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. inputStream = null;
  9. lastValid = 0;
  10. pos = 0;
  11. lastActiveFilter = -1;
  12. parsingHeader = true;
  13. swallowInput = true;
  14. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. inputStream = null;
  9. lastValid = 0;
  10. pos = 0;
  11. lastActiveFilter = -1;
  12. parsingHeader = true;
  13. swallowInput = true;
  14. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. socket = 0;
  9. lastValid = 0;
  10. pos = 0;
  11. lastActiveFilter = -1;
  12. parsingHeader = true;
  13. swallowInput = true;
  14. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. socket = 0;
  9. lastValid = 0;
  10. pos = 0;
  11. lastActiveFilter = -1;
  12. parsingHeader = true;
  13. swallowInput = true;
  14. available = false;
  15. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. lastValid = 0;
  9. reset();
  10. }

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

  1. public void afterService(Request req, Response res)
  2. throws Exception {
  3. // Recycle the wrapper request and response
  4. req.recycle();
  5. res.recycle();
  6. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. // Recycle filters
  9. for (int i = 0; i <= lastActiveFilter; i++) {
  10. activeFilters[i].recycle();
  11. }
  12. lastValid = 0;
  13. pos = 0;
  14. lastActiveFilter = -1;
  15. parsingHeader = true;
  16. swallowInput = true;
  17. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. public void recycle() {
  6. // Recycle Request object
  7. request.recycle();
  8. // Recycle filters
  9. for (int i = 0; i <= lastActiveFilter; i++) {
  10. activeFilters[i].recycle();
  11. }
  12. lastValid = 0;
  13. pos = 0;
  14. lastActiveFilter = -1;
  15. parsingHeader = true;
  16. swallowInput = true;
  17. }

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

  1. /**
  2. * Recycle the processor.
  3. */
  4. public void recycle() {
  5. // Recycle Request object
  6. first = true;
  7. endOfStream = false;
  8. empty = true;
  9. replay = false;
  10. finished = false;
  11. request.recycle();
  12. response.recycle();
  13. certificates.recycle();
  14. inputBuffer.clear();
  15. inputBuffer.limit(0);
  16. outputBuffer.clear();
  17. }

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

  1. /**
  2. * Recycle the processor.
  3. */
  4. public void recycle() {
  5. // Recycle Request object
  6. first = true;
  7. endOfStream = false;
  8. empty = true;
  9. replay = false;
  10. finished = false;
  11. timeout = -1;
  12. resumeNotification = false;
  13. eventProcessing = true;
  14. request.recycle();
  15. response.recycle();
  16. certificates.recycle();
  17. inputBuffer.clear();
  18. inputBuffer.limit(0);
  19. outputBuffer.clear();
  20. }

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

  1. /**
  2. * Recycle the input buffer. This should be called when closing the
  3. * connection.
  4. */
  5. void recycle() {
  6. wrapper = null;
  7. request.recycle();
  8. for (int i = 0; i <= lastActiveFilter; i++) {
  9. activeFilters[i].recycle();
  10. }
  11. byteBuffer.limit(0).position(0);
  12. lastActiveFilter = -1;
  13. parsingHeader = true;
  14. swallowInput = true;
  15. headerParsePos = HeaderParsePosition.HEADER_START;
  16. parsingRequestLine = true;
  17. parsingRequestLinePhase = 0;
  18. parsingRequestLineEol = false;
  19. parsingRequestLineStart = 0;
  20. parsingRequestLineQPos = -1;
  21. headerData.recycle();
  22. }

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

  1. /**
  2. * Recycle the processor.
  3. */
  4. public void recycle() {
  5. // Recycle Request object
  6. first = true;
  7. endOfStream = false;
  8. empty = true;
  9. replay = false;
  10. finished = false;
  11. request.recycle();
  12. response.recycle();
  13. certificates.recycle();
  14. }

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

  1. /**
  2. * Recycle the processor.
  3. */
  4. public void recycle() {
  5. // Recycle Request object
  6. first = true;
  7. endOfStream = false;
  8. empty = true;
  9. replay = false;
  10. finished = false;
  11. timeout = -1;
  12. resumeNotification = false;
  13. eventProcessing = true;
  14. request.recycle();
  15. response.recycle();
  16. certificates.recycle();
  17. }

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

  1. /**
  2. * Recycle the processor.
  3. */
  4. public void recycle() {
  5. // Recycle Request object
  6. first = true;
  7. endOfStream = false;
  8. empty = true;
  9. replay = false;
  10. finished = false;
  11. timeout = -1;
  12. resumeNotification = false;
  13. eventProcessing = true;
  14. request.recycle();
  15. response.recycle();
  16. certificates.recycle();
  17. }

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

  1. public void recycle() {
  2. asyncStateMachine.recycle();
  3. // Recycle Request object
  4. first = true;
  5. endOfStream = false;
  6. empty = true;
  7. replay = false;
  8. finished = false;
  9. request.recycle();
  10. response.recycle();
  11. certificates.recycle();
  12. byteCount = 0;
  13. }

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

  1. @Override
  2. public void recycle() {
  3. getAdapter().checkRecycled(request, response);
  4. super.recycle();
  5. request.recycle();
  6. response.recycle();
  7. first = true;
  8. endOfStream = false;
  9. waitingForBodyMessage = false;
  10. empty = true;
  11. replay = false;
  12. responseFinished = false;
  13. certificates.recycle();
  14. swallowResponse = false;
  15. bytesWritten = 0;
  16. }

相关文章

Request类方法