Class CompoundProcessor

java.lang.Object
org.elasticsearch.ingest.CompoundProcessor
All Implemented Interfaces:
Processor

public class CompoundProcessor extends Object implements Processor
A Processor that executes a list of other "processors". It executes a separate list of "onFailureProcessors" when any of the processors throw an Exception.
  • Field Details

  • Constructor Details

    • CompoundProcessor

      public CompoundProcessor(Processor... processor)
    • CompoundProcessor

      public CompoundProcessor(boolean ignoreFailure, List<Processor> processors, List<Processor> onFailureProcessors)
  • Method Details