Package org.elasticsearch.ingest
Class DropProcessor.Factory
- java.lang.Object
-
- org.elasticsearch.ingest.DropProcessor.Factory
-
- All Implemented Interfaces:
Processor.Factory
- Enclosing class:
- DropProcessor
public static final class DropProcessor.Factory extends java.lang.Object implements Processor.Factory
-
-
Constructor Summary
Constructors Constructor Description Factory()
-
Method Summary
Modifier and Type Method Description Processorcreate(java.util.Map<java.lang.String,Processor.Factory> processorFactories, java.lang.String tag, java.util.Map<java.lang.String,java.lang.Object> config)Creates a processor based on the specified map of maps config.
-
-
-
Method Detail
-
create
public Processor create(java.util.Map<java.lang.String,Processor.Factory> processorFactories, java.lang.String tag, java.util.Map<java.lang.String,java.lang.Object> config)
Description copied from interface:Processor.FactoryCreates a processor based on the specified map of maps config.- Specified by:
createin interfaceProcessor.Factory- Parameters:
processorFactories- Other processors which may be created inside this processortag- The tag for the processorconfig- The configuration for the processor Note: Implementations are responsible for removing the used configuration keys, so that after creating a pipeline ingest can verify if all configurations settings have been used.
-
-