Package org.vafer.jdeb
Interface DataConsumer
public interface DataConsumer
A DataConsumer consumes Data produced from a producer.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonEachDir(org.apache.commons.compress.archivers.tar.TarArchiveEntry dirEntry)voidonEachFile(InputStream input, org.apache.commons.compress.archivers.tar.TarArchiveEntry fileEntry)voidonEachLink(org.apache.commons.compress.archivers.tar.TarArchiveEntry linkEntry)
-
Method Details
-
onEachDir
void onEachDir(org.apache.commons.compress.archivers.tar.TarArchiveEntry dirEntry) throws IOException- Throws:
IOException
-
onEachFile
void onEachFile(InputStream input, org.apache.commons.compress.archivers.tar.TarArchiveEntry fileEntry) throws IOException- Throws:
IOException
-
onEachLink
void onEachLink(org.apache.commons.compress.archivers.tar.TarArchiveEntry linkEntry) throws IOException- Throws:
IOException
-