com.github.skjolber.unzip.ChunkedFileEntryHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unzip-csv Show documentation
Show all versions of unzip-csv Show documentation
Project for unzipping CSV files
package com.github.skjolber.unzip;
import java.util.concurrent.ThreadPoolExecutor;
public interface ChunkedFileEntryHandler extends FileEntryHandler {
default FileEntryChunkStreamHandler getFileEntryChunkedStreamHandler(String name, long size, ThreadPoolExecutor executor) throws Exception {
return null;
}
}