Interface TransformerSupport


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

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

    • createTransformer

      Transformer createTransformer(PluginContext pluginContext, OperatorContext operatorContext)
      Returns a transformer 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 transformer object