org.simpleframework.http.Request.isKeepAlive()方法的使用及代码示例

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

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

Request.isKeepAlive介绍

[英]This is a convenience method that is used to determine whether or not this message has the Connection: close header. If the close token is present then this stream is not a keep-alive connection. If this has no Connection header then the keep-alive status is determined by the HTTP version, that is, HTTP/1.1 is keep-alive by default, HTTP/1.0 is not keep-alive by default.
[中]这是一种方便的方法,用于确定此邮件是否具有Connection: close标题。如果存在关闭令牌,则此流不是保持活动的连接。如果没有Connection头,则保持活动状态由HTTP版本决定,即HTTP/1.1默认为保持活动状态,HTTP/1.0默认为不保持活动状态。

代码示例

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This is a convenience method that is used to determine whether
  3. * or not this message has the <code>Connection: close</code>
  4. * header. If the close token is present then this stream is not
  5. * a keep-alive connection. If this has no <code>Connection</code>
  6. * header then the keep-alive status is determined by the HTTP
  7. * version, that is, HTTP/1.1 is keep-alive by default, HTTP/1.0
  8. * is not keep-alive by default.
  9. *
  10. * @return returns true if this has a keep-alive stream
  11. */
  12. public boolean isKeepAlive() {
  13. return request.isKeepAlive();
  14. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This is a convenience method that is used to determine whether
  3. * or not this message has the <code>Connection: close</code>
  4. * header. If the close token is present then this stream is not
  5. * a keep-alive connection. If this has no <code>Connection</code>
  6. * header then the keep-alive status is determined by the HTTP
  7. * version, that is, HTTP/1.1 is keep-alive by default, HTTP/1.0
  8. * is not keep-alive by default.
  9. *
  10. * @return returns true if this has a keep-alive stream
  11. */
  12. public boolean isKeepAlive() {
  13. return request.isKeepAlive();
  14. }

代码示例来源:origin: org.restlet/org.restlet.ext.simple

  1. @Override
  2. protected boolean isClientKeepAlive() {
  3. return request.isKeepAlive();
  4. }

代码示例来源:origin: org.simpleframework/simple

  1. /**
  2. * This is a convenience method that is used to determine whether
  3. * or not this message has the <code>Connection: close</code>
  4. * header. If the close token is present then this stream is not
  5. * a keep-alive connection. If this has no <code>Connection</code>
  6. * header then the keep-alive status is determined by the HTTP
  7. * version, that is, HTTP/1.1 is keep-alive by default, HTTP/1.0
  8. * is not keep-alive by default.
  9. *
  10. * @return returns true if this has a keep-alive stream
  11. */
  12. public boolean isKeepAlive() {
  13. return request.isKeepAlive();
  14. }

相关文章