Available Processor Types
FlowFileSource
The nifiapi.flowfilesource.FlowFileSource
class provides an interface for creating a FlowFile. Processors that extend this interface are expected to implement the create
(ProcessContext) method, which should return an instance of a nifiapi.flowfilesource.FlowFileSourceResult
.
For detail overview see FlowFileSource.
FlowFileTransform
The nifiapi.flowfiletransform.TransformFlowFile
class provides an interface for routing and transforming incoming FlowFiles, based on their attributes or content. Processors that extend this interface are expected to implement the transform
(ProcessContext, InputFlowFile) method, which should return an instance of a nifiapi.flowfiletransform.FlowFileTransformResult
.
For detail overview see FlowFileTransform