[ 
https://issues.apache.org/jira/browse/CAMEL-4024?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13040436#comment-13040436
 ] 

ray edited comment on CAMEL-4024 at 5/27/11 8:57 PM:
-----------------------------------------------------

Example usage:

{code}
from(fromUri)
  .split().method(OuterZipFileDecompressingSplitter.class, "split")
  .streaming()
  .parallelProcessing()
  .to("direct:innerZipFile");

from("direct:innerZipFile")
  .split().method(InnerZipFileDecompressingSplitter.class, "split")
  .streaming()
  .parallelProcessing()
  .to("direct:furtherProcessing");
{code}

      was (Author: mondraymond):
    Example usage:

{code}
        from(fromUri)
                .split().method(OuterZipFileDecompressingSplitter.class, 
"split")
                .streaming()
                .parallelProcessing()
                .to("direct:innerZipFile");

        from("direct:innerZipFile")
                .split().method(InnerZipFileDecompressingSplitter.class, 
"split")
                .streaming()
                .parallelProcessing()
                .to("direct:furtherProcessing");
{code}
  
> support decompression of zip files
> ----------------------------------
>
>                 Key: CAMEL-4024
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4024
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-core
>    Affects Versions: 2.7.1
>         Environment: All
>            Reporter: ray
>            Priority: Minor
>             Fix For: Future
>
>         Attachments: InnerZipFileDecompressingSplitter.java, 
> OuterZipFileDecompressingSplitter.java
>
>
> Two cases: Zip files with zip files inside (wrapping zip files) and inner zip 
> files with uncompressed payloads.  I haven't really thought through how to 
> deal with all of the options in these cases but I will attach the code to 
> deal with the simple ones :)

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to