Interface ArchiveAdapter.EntryTask
-
- Enclosing interface:
- ArchiveAdapter
public static interface ArchiveAdapter.EntryTask
defines the notion of an archive entry task which is a task aimed to be run on particular archive entry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
on(ArchiveAdapter.Entry e, InputStream is)
callback to do some processing on an archive entry.
-
-
-
Method Detail
-
on
void on(ArchiveAdapter.Entry e, InputStream is) throws IOException
callback to do some processing on an archive entry.- Parameters:
e
- the archive entry information such as its name, size...is
- the archive entry content.- Throws:
IOException
- if the input stream reading generates a failure
-
-