org.pipservices4.persistence.read.ILoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pip-services4-persistence Show documentation
Show all versions of pip-services4-persistence Show documentation
Persistence components for Pip.Services in Java
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