Interface ILoader<T>

All Known Implementing Classes:
JsonFilePersister

public interface ILoader<T>
Interface for data processing components that load data items.
  • Method Summary

    Modifier and Type
    Method
    Description
    load(String correlationId)
    Loads data items.
  • Method Details

    • load

      List<T> load(String correlationId) throws org.pipservices3.commons.errors.ApplicationException
      Loads data items.
      Parameters:
      correlationId - (optional) transaction id to trace execution through call chain.
      Returns:
      a list of data items.
      Throws:
      org.pipservices3.commons.errors.ApplicationException - when error occured.