IFilteredReader

Interface for data processing components that can retrieve a list of data items through the use of a filter.

Description

The IFilteredReader interface is used by data processing components that can retrieve a list of data items through the use of a filter.

Instance methods

get_list_by_filter

Gets a list of data items using filter parameters.

get_list_by_filter(correlation_id: Optional[str], filter: Optional[FilterParams], paging: Optional[PagingParams], sort: Optional[SortParams] = None): DataPage

  • correlation_id: Optional[str] - (optional) transaction id used to trace execution through the call chain.
  • filter: Optional[FilterParams] - (optional) filter parameters
  • sort: Optional[SortParams] - (optional) sort parameters
  • returns: List[T] - list of items