Interface FormatterSupport


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

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

    • createFormatter

      Formatter createFormatter(PluginContext pluginContext, OperatorContext operatorContext)
      Returns a formatter 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 formatter object