Package | Description |
---|---|
org.apache.nifi.processor |
Modifier and Type | Method and Description |
---|---|
FlowFile |
ProcessSession.append(FlowFile source,
OutputStreamCallback writer)
Executes the given callback against the content corresponding to the
given FlowFile, such that any data written to the OutputStream of the
content will be appended to the end of FlowFile.
|
void |
ProcessSession.read(FlowFile source,
boolean allowSessionStreamManagement,
InputStreamCallback reader)
Deprecated.
Restricting the ProcessSession's ability to manage its own streams should not be used. The need for this
capability was obviated by the introduction of the
ProcessSession.migrate(ProcessSession, Collection) and ProcessSession.migrate(ProcessSession) methods. |
void |
ProcessSession.read(FlowFile source,
InputStreamCallback reader)
Executes the given callback against the contents corresponding to the
given FlowFile.
|
FlowFile |
ProcessSession.write(FlowFile source,
OutputStreamCallback writer)
Executes the given callback against the content corresponding to the
given FlowFile.
|
FlowFile |
ProcessSession.write(FlowFile source,
StreamCallback writer)
Executes the given callback against the content corresponding to the
given flow file.
|
Copyright © 2024 Apache NiFi Project. All rights reserved.