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

org.pipservices4.persistence.read.ILoader Maven / Gradle / Ivy

The newest version!
package org.pipservices4.persistence.read;

import org.pipservices4.commons.errors.ApplicationException;
import org.pipservices4.components.context.IContext;

import java.util.List;

/**
 * Interface for data processing components that load data items.
 */
public interface ILoader {
	/**
	 * Loads data items.
	 * 
	 * @param context     (optional) a context to trace execution through call chain.
	 * @return a list of data items.
	 * @throws ApplicationException when error occured.
	 */
	List load(IContext context) throws ApplicationException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy