Class VmPipeSessionImpl

    • Method Detail

      • getService

        public IoService getService()
        Description copied from interface: IoSession
        Returns the IoService which provides I/O service to this session.
      • getConfig

        public IoSessionConfig getConfig()
        Description copied from interface: IoSession
        Returns the configuration of this session.
      • getFilterChain

        public IoFilterChain getFilterChain()
        Description copied from interface: IoSession
        Returns the filter chain that only affects this session.
      • getHandler

        public IoHandler getHandler()
        Description copied from interface: IoSession
        Returns the IoHandler which handles this session.
      • close0

        protected void close0()
        Description copied from class: BaseIoSession
        Implement this method to perform real close operation. By default, this method is implemented to set the future to 'closed' immediately.
        Overrides:
        close0 in class BaseIoSession
      • write0

        protected void write0​(IoFilter.WriteRequest writeRequest)
        Description copied from class: BaseIoSession
        Implement this method to perform real write operation with the specified writeRequest. By default, this method is implemented to set the future to 'not written' immediately.
        Overrides:
        write0 in class BaseIoSession
        Parameters:
        writeRequest - Write request to make
      • getTransportType

        public TransportType getTransportType()
        Description copied from interface: IoSession
        Returns transport type of this session.
      • getRemoteAddress

        public java.net.SocketAddress getRemoteAddress()
        Description copied from interface: IoSession
        Returns the socket address of remote peer.
      • getLocalAddress

        public java.net.SocketAddress getLocalAddress()
        Description copied from interface: IoSession
        Returns the socket address of local machine which is associated with this session.