Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ILoader<T>

Interface for data processing components that load data items.

Type parameters

  • T

Hierarchy

  • ILoader

Implemented by

Index

Methods

Methods

load

  • load(correlation_id: string, callback: function): void
  • Loads data items.

    Parameters

    • correlation_id: string

      (optional) transaction id to trace execution through call chain.

    • callback: function

      (optional) callback function that receives a list of data items or error.

        • (err: any, items: T[]): void
        • Parameters

          • err: any
          • items: T[]

          Returns void

    Returns void

Generated using TypeDoc