Class OETLProcessor

java.lang.Object
com.orientechnologies.orient.etl.OETLProcessor
All Implemented Interfaces:
AutoCloseable

public class OETLProcessor extends Object implements AutoCloseable
ETL processor class.
Author:
Luca Garulli (l.garulli--(at)--orientdb.com) (l.garulli-at-orientdb.com)
  • Field Details

  • Constructor Details

    • OETLProcessor

      public OETLProcessor(List<OETLBlock> iBeginBlocks, OETLSource iSource, OETLExtractor iExtractor, List<OETLTransformer> iTransformers, OETLLoader iLoader, List<OETLBlock> iEndBlocks, OETLContext iContext)
      Creates an ETL processor by setting all the components on construction.
      Parameters:
      iBeginBlocks - List of Blocks to execute at the beginning of processing
      iSource - Source component
      iExtractor - Extractor component
      iTransformers - List of Transformers
      iLoader - Loader component
      iEndBlocks - List of Blocks to execute at the end of processing
      iContext - Execution Context
  • Method Details