Class UpgradeInfo


  • public class UpgradeInfo
    extends java.lang.Object
    Structure to hold statistical information about connections that have been established using the HTTP/1.1 upgrade mechanism. Bytes sent/received will always be populated. Messages sent/received will be populated if that makes sense for the protocol and the information is exposed by the protocol implementation.
    • Constructor Detail

      • UpgradeInfo

        public UpgradeInfo()
    • Method Detail

      • getBytesSent

        public long getBytesSent()
      • setBytesSent

        public void setBytesSent​(long bytesSent)
      • addBytesSent

        public void addBytesSent​(long bytesSent)
      • getBytesReceived

        public long getBytesReceived()
      • setBytesReceived

        public void setBytesReceived​(long bytesReceived)
      • addBytesReceived

        public void addBytesReceived​(long bytesReceived)
      • getMsgsSent

        public long getMsgsSent()
      • setMsgsSent

        public void setMsgsSent​(long msgsSent)
      • addMsgsSent

        public void addMsgsSent​(long msgsSent)
      • getMsgsReceived

        public long getMsgsReceived()
      • setMsgsReceived

        public void setMsgsReceived​(long msgsReceived)
      • addMsgsReceived

        public void addMsgsReceived​(long msgsReceived)