Class InputStreamDecoder

    • Constructor Detail

      • InputStreamDecoder

        public InputStreamDecoder()
    • Method Detail

      • willDecode

        public boolean willDecode​(java.nio.ByteBuffer bytes)
        Description copied from interface: Decoder.Binary
        Answer whether the given bytes can be decoded into an object of type T.
        Specified by:
        willDecode in interface Decoder.Binary<java.io.InputStream>
        Parameters:
        bytes - the bytes to be decoded.
        Returns:
        whether or not the bytes can be decoded by this decoder.
      • decode

        public java.io.InputStream decode​(java.nio.ByteBuffer bytes)
                                   throws DecodeException
        Description copied from interface: Decoder.Binary
        Decode the given bytes into an object of type T.
        Specified by:
        decode in interface Decoder.Binary<java.io.InputStream>
        Parameters:
        bytes - the bytes to be decoded.
        Returns:
        the decoded object.
        Throws:
        DecodeException - If the provided bytes cannot be decoded to type T