Packages

object Archive

Java API.

Source
Archive.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Archive
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def tar(): Flow[Pair[TarArchiveMetadata, Source[ByteString, NotUsed]], ByteString, NotUsed]

    Flow for packaging multiple files into one TAR file.

  2. def tarReader(): Flow[ByteString, Pair[TarArchiveMetadata, Source[ByteString, NotUsed]], NotUsed]

    Parse incoming ByteStrings into tar file entries and sources for the file contents.

    Parse incoming ByteStrings into tar file entries and sources for the file contents. The file contents sources MUST be consumed to progress reading the file.

  3. def zip(): Flow[Pair[ArchiveMetadata, Source[ByteString, NotUsed]], ByteString, NotUsed]

    Flow for compressing multiple files into one ZIP file.

  4. def zipReader(file: File, chunkSize: Int): Source[Pair[ZipArchiveMetadata, Source[ByteString, NotUsed]], NotUsed]
  5. def zipReader(file: File): Source[Pair[ZipArchiveMetadata, Source[ByteString, NotUsed]], NotUsed]
  6. def zipReader(file: File, chunkSize: Int, fileCharset: Charset): Source[Pair[ZipArchiveMetadata, Source[ByteString, NotUsed]], NotUsed]

    Flow for reading ZIP files.