Interface ByteArrayFeeder

    • Method Detail

      • feedInput

        void feedInput​(byte[] data,
                       int offset,
                       int end)
                throws java.io.IOException
        Method that can be called to feed more data, if (and only if) NonBlockingInputFeeder.needMoreInput() returns true.
        Parameters:
        data - Byte array that contains data to feed: caller must ensure data remains stable until it is fully processed (which is true when NonBlockingInputFeeder.needMoreInput() returns true)
        offset - Offset within array where input data to process starts
        end - Offset after last byte contained in the input array
        Throws:
        java.io.IOException - if the state is such that this method should not be called (has not yet consumed existing input data, or has been marked as closed)