Class Sizes


  • public class Sizes
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int requestBodySize
      Size of the request body (POST data payload) in bytes.
      int requestHeadersSize
      Total number of bytes from the start of the HTTP request message until (and including) the double CRLF before the body.
      int responseBodySize
      Size of the received response body (encoded) in bytes.
      int responseHeadersSize
      Total number of bytes from the start of the HTTP response message until (and including) the double CRLF before the body.
    • Constructor Summary

      Constructors 
      Constructor Description
      Sizes()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • requestBodySize

        public int requestBodySize
        Size of the request body (POST data payload) in bytes. Set to 0 if there was no body.
      • requestHeadersSize

        public int requestHeadersSize
        Total number of bytes from the start of the HTTP request message until (and including) the double CRLF before the body.
      • responseBodySize

        public int responseBodySize
        Size of the received response body (encoded) in bytes.
      • responseHeadersSize

        public int responseHeadersSize
        Total number of bytes from the start of the HTTP response message until (and including) the double CRLF before the body.
    • Constructor Detail

      • Sizes

        public Sizes()