Class IoSessionInputStream

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable

    class IoSessionInputStream
    extends java.io.InputStream
    An InputStream that buffers data read from IoHandler.messageReceived(IoSession, Object) events.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private IoBuffer buf  
      private boolean closed  
      private java.io.IOException exception  
      private java.lang.Object mutex  
      private boolean released  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int available()  
      void close()  
      int read()  
      int read​(byte[] b, int off, int len)  
      private void releaseBuffer()  
      void throwException​(java.io.IOException e)  
      private boolean waitForData()  
      void write​(IoBuffer src)  
      • Methods inherited from class java.io.InputStream

        mark, markSupported, read, reset, skip
      • Methods inherited from class java.lang.Object

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

      • mutex

        private final java.lang.Object mutex
      • closed

        private volatile boolean closed
      • released

        private volatile boolean released
      • exception

        private java.io.IOException exception
    • Constructor Detail

      • IoSessionInputStream

        public IoSessionInputStream()
    • Method Detail

      • available

        public int available()
        Overrides:
        available in class java.io.InputStream
      • close

        public void close()
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Overrides:
        close in class java.io.InputStream
      • read

        public int read()
                 throws java.io.IOException
        Specified by:
        read in class java.io.InputStream
        Throws:
        java.io.IOException
      • read

        public int read​(byte[] b,
                        int off,
                        int len)
                 throws java.io.IOException
        Overrides:
        read in class java.io.InputStream
        Throws:
        java.io.IOException
      • waitForData

        private boolean waitForData()
                             throws java.io.IOException
        Throws:
        java.io.IOException
      • releaseBuffer

        private void releaseBuffer()
      • write

        public void write​(IoBuffer src)
      • throwException

        public void throwException​(java.io.IOException e)