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

com.github.skjolber.unzip.csv.CsvLineHandlerFactory Maven / Gradle / Ivy

package com.github.skjolber.unzip.csv;

import java.util.concurrent.ThreadPoolExecutor;

public interface CsvLineHandlerFactory {
	
	/**
	 * Return a handler for the file name. 
	 * 
	 * @param fileName file name
	 * @param executor for queuing additional work
	 * @param  the expected type of object returned per line
	 * @return the line handler, null if none (ignored)
	 */

	 CsvLineHandler getHandler(String fileName, ThreadPoolExecutor executor);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy