All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.skjolber.unzip.ChunkedFileEntryHandler Maven / Gradle / Ivy

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy