Interface LoaderSupport


@DeveloperApi public interface LoaderSupport
Factory object responsible for creating Loader operators. A loader operator will be requested for each input dataset of workflow tasks; therefore, factory might implement singleton loader object or create a new loader object each time when requested depending on the implementation, e.g. thread safety.
  • Method Summary

    Modifier and Type
    Method
    Description
    createLoader(PluginContext pluginContext, OperatorContext operatorContext)
    Returns a loader operator with specific plugin context and operator context that is created and initialized by SeqsLab workflow engine.
  • Method Details

    • createLoader

      Loader createLoader(PluginContext pluginContext, OperatorContext operatorContext)
      Returns a loader operator with specific plugin context and operator context that is created and initialized by SeqsLab workflow engine.
      Parameters:
      pluginContext - Plugin context returned from plugin initialization
      operatorContext - Operator context containing configuration parameters and task inputs
      Returns:
      A loader object