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

com.redis.riot.file.FileReaderRegistry Maven / Gradle / Ivy

There is a newer version: 4.1.9
Show newest version
package com.redis.riot.file;

import java.io.IOException;

import org.springframework.batch.item.ItemReader;
import org.springframework.core.io.Resource;

public class FileReaderRegistry extends AbstractRegistry {

	public ItemReader reader(String location, FileReaderOptions options) throws IOException {
		Resource resource = Files.resource(location, options.getFileOptions().getResourceOptions());
		return factory(resource, options.getFileOptions()).create(resource, options);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy