Interface ArchiveUtil.DoInArchiveHandler2<T>

  • Type Parameters:
    T - return type
    Enclosing class:
    ArchiveUtil

    public static interface ArchiveUtil.DoInArchiveHandler2<T>
    Callback for #doInArchive(ArchiveFileDescriptor, String, DoInArchiveHandler) Similar to DoInArchiveHandler but #found method MUST close all Closeable items in deque(stack)
    Since:
    8.0
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T found​(org.apache.commons.compress.archivers.ArchiveEntry entry, org.apache.commons.compress.archivers.ArchiveInputStream stream, Deque<Closeable> shouldBeManuallyClosed)  
    • Method Detail

      • found

        T found​(@NotNull
                org.apache.commons.compress.archivers.ArchiveEntry entry,
                @NotNull
                org.apache.commons.compress.archivers.ArchiveInputStream stream,
                @NotNull
                Deque<Closeable> shouldBeManuallyClosed)
         throws IOException
        Throws:
        IOException