You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Remi Arntzen (JIRA)" <ji...@apache.org> on 2008/03/10 03:31:46 UTC

[jira] Commented: (CODEC-8) REQ: Streaming codecs

    [ https://issues.apache.org/jira/browse/CODEC-8?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12576843#action_12576843 ] 

Remi Arntzen commented on CODEC-8:
----------------------------------


Please remove me from this mailing list as I have not considered this
problem in well over a year and have subsequently discarded my
username and password.


> REQ: Streaming codecs
> ---------------------
>
>                 Key: CODEC-8
>                 URL: https://issues.apache.org/jira/browse/CODEC-8
>             Project: Commons Codec
>          Issue Type: Improvement
>    Affects Versions: 1.2
>         Environment: Operating System: All
> Platform: All
>            Reporter: Sergei S. Ivanov
>             Fix For: 1.4
>
>         Attachments: Base64.diff
>
>
> I would really appreciate if, for example, Base64 encoder could operate on
> streams. One reason is that it's much easier to attach ByteArrayInputStream to
> an array of bytes that to copy a byte array into a stream. The other reason is
> greater flexibility, given by the streams.
> I'd suggest creating a pair of new interfaces:
> public interface StreamingDecoder implements Decoder {
>   public void decode(InputStream in, OutputStream out) throws DecoderException;
> }
> public interface StreamingEncoder implements Encoder {
>   public void encode(InputStream in, OutputStream out) throws EncoderException;
> }
> Base64 and Hex will then be able to implement these interfaces.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.