Class ObservableInputStream.Observer

    • Constructor Detail

      • Observer

        public Observer()
    • Method Detail

      • data

        public void data​(int pByte)
                  throws IOException
        Called to indicate, that InputStream.read() has been invoked on the ObservableInputStream, and will return a value.
        Parameters:
        pByte - The value, which is being returned. This will never be -1 (EOF), because, in that case, finished() will be invoked instead.
        Throws:
        IOException - if an i/o-error occurs
      • data

        public void data​(byte[] pBuffer,
                         int pOffset,
                         int pLength)
                  throws IOException
        Called to indicate that InputStream.read(byte[]), or InputStream.read(byte[], int, int) have been called, and are about to invoke data.
        Parameters:
        pBuffer - The byte array, which has been passed to the read call, and where data has been stored.
        pOffset - The offset within the byte array, where data has been stored.
        pLength - The number of bytes, which have been stored in the byte array.
        Throws:
        IOException - if an i/o-error occurs
      • finished

        public void finished()
                      throws IOException
        Called to indicate that EOF has been seen on the underlying stream. This method may be called multiple times, if the reader keeps invoking either of the read methods, and they will consequently keep returning EOF.
        Throws:
        IOException - if an i/o-error occurs
      • error

        public void error​(IOException pException)
                   throws IOException
        Called to indicate that an error occurred on the underlying stream.
        Parameters:
        pException - the exception to throw
        Throws:
        IOException - if an i/o-error occurs