Class SslConnection.DecryptedEndPoint

    • Constructor Detail

      • DecryptedEndPoint

        public DecryptedEndPoint()
    • Method Detail

      • getIdleTimeout

        public long getIdleTimeout()
        Description copied from interface: EndPoint
        Get the max idle time in ms.

        The max idle time is the time the endpoint can be idle before extraordinary handling takes place.

        Specified by:
        getIdleTimeout in interface EndPoint
        Overrides:
        getIdleTimeout in class IdleTimeout
        Returns:
        the max idle time in ms or if ms <= 0 implies an infinite timeout
      • setIdleTimeout

        public void setIdleTimeout​(long idleTimeout)
        Description copied from interface: EndPoint
        Set the idle timeout.
        Specified by:
        setIdleTimeout in interface EndPoint
        Overrides:
        setIdleTimeout in class IdleTimeout
        Parameters:
        idleTimeout - the idle timeout in MS. Timeout <= 0 implies an infinite timeout
      • isOpen

        public boolean isOpen()
        Description copied from class: IdleTimeout
        This abstract method should be called to check if idle timeouts should still be checked.
        Specified by:
        isOpen in interface EndPoint
        Specified by:
        isOpen in class IdleTimeout
        Returns:
        True if the entity monitored should still be checked for idle timeouts
      • fill

        public int fill​(ByteBuffer buffer)
                 throws IOException
        Description copied from interface: EndPoint
        Fill the passed buffer with data from this endpoint. The bytes are appended to any data already in the buffer by writing from the buffers limit up to it's capacity. The limit is updated to include the filled bytes.
        Parameters:
        buffer - The buffer to fill. The position and limit are modified during the fill. After the operation, the position is unchanged and the limit is increased to reflect the new data filled.
        Returns:
        an int value indicating the number of bytes filled or -1 if EOF is read or the input is shutdown.
        Throws:
        IOException - if the endpoint is closed.
      • flush

        public boolean flush​(ByteBuffer... appOuts)
                      throws IOException
        Description copied from interface: EndPoint
        Flush data from the passed header/buffer to this endpoint. As many bytes as can be consumed are taken from the header/buffer position up until the buffer limit. The header/buffers position is updated to indicate how many bytes have been consumed.
        Parameters:
        appOuts - the buffers to flush
        Returns:
        True IFF all the buffers have been consumed and the endpoint has flushed the data to its destination (ie is not buffering any data).
        Throws:
        IOException - If the endpoint is closed or output is shutdown.
      • shutdownOutput

        public void shutdownOutput()
        Description copied from interface: EndPoint
        Shutdown the output.

        This call indicates that no more data will be sent on this endpoint that that the remote end should read an EOF once all previously sent data has been consumed. Shutdown may be done either at the TCP/IP level, as a protocol exchange (Eg TLS close handshake) or both.

        If the endpoint has EndPoint.isInputShutdown() true, then this call has the same effect as EndPoint.close().

      • isOutputShutdown

        public boolean isOutputShutdown()
        Description copied from interface: EndPoint
        Test if output is shutdown. The output is shutdown by a call to EndPoint.shutdownOutput() or EndPoint.close().
        Returns:
        true if the output is shutdown or the endpoint is closed.
      • getTransport

        public Object getTransport()
        Returns:
        The underlying transport object (socket, channel, etc.)
      • isInputShutdown

        public boolean isInputShutdown()
        Description copied from interface: EndPoint
        Test if the input is shutdown. The input is shutdown if an EOF has been read while doing a EndPoint.fill(ByteBuffer). Once the input is shutdown, all calls to EndPoint.fill(ByteBuffer) will return -1, until such time as the end point is close, when they will return EofException.
        Returns:
        True if the input is shutdown or the endpoint is closed.