-
public interface ArchiveOpener
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classArchiveOpener.OpenErrorpublic classArchiveOpener.SniffOpenError
-
Method Summary
Modifier and Type Method Description abstract Try<ContainerAsset, ArchiveOpener.OpenError>open(Format format, Readable source)Creates a new Container to access the entries of an archive with a known format. abstract Try<ContainerAsset, ArchiveOpener.SniffOpenError>sniffOpen(Readable source)Creates a new ContainerAsset to access the entries of an archive after sniffing its format. -
-
Method Detail
-
open
abstract Try<ContainerAsset, ArchiveOpener.OpenError> open(Format format, Readable source)
Creates a new Container to access the entries of an archive with a known format.
-
sniffOpen
abstract Try<ContainerAsset, ArchiveOpener.SniffOpenError> sniffOpen(Readable source)
Creates a new ContainerAsset to access the entries of an archive after sniffing its format.
-
-
-
-