Interface ZipProcessor


public interface ZipProcessor
Interface for a processor that processes an InputStream and a factory for the processor.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static interface 
    Factory for creating a ZipProcessor.
  • Method Summary

    Modifier and Type
    Method
    Description
    process(InputStream toProcess)
    Process the InputStream and return a ZipArchive containing parsed from the stream.
  • Method Details

    • process

      ZipArchive process(InputStream toProcess) throws IOException
      Process the InputStream and return a ZipArchive containing parsed from the stream.
      Parameters:
      toProcess - the InputStream to process
      Returns:
      a ZipArchive parsed from the stream
      Throws:
      IOException - when an IO error occurs reading the InputStream