abstract datatype: flowfile()
A record to hold flowfile definition.
abstract datatype: flowfiles()
Holds a set of flowfiles received or to be send.
| add/2 | Adds the Flowfile to Flowfiles. |
| add/3 | Create a new flowfile and add it to Flowfiles. |
| get_attribute/2 | |
| get_attributes/1 | |
| get_content/1 | |
| get_size/1 | |
| new/0 | Creates a new object to hold flowfiles. |
| new/2 | Creates a new flowfile with Attributes and Content. |
| remove/1 | Remove and returns a flowfile from Flowfile. |
add(Flowfile::flowfile(), Flowfiles::flowfiles()) -> flowfiles()
Adds the Flowfile to Flowfiles.
add(Attributes::map(), Content::binary(), Flowfiles::flowfiles()) -> flowfiles()
Create a new flowfile and add it to Flowfiles.
get_attribute(Flowfile::flowfile(), Key::binary()) -> binary()
get_attributes(Flowfile::flowfile()) -> map()
get_content(Flowfile::flowfile()) -> binary()
get_size(Flowfile::flowfile()) -> non_neg_integer()
new() -> flowfiles()
Creates a new object to hold flowfiles.
new(Attributes::map(), Content::binary()) -> flowfile()
Creates a new flowfile with Attributes and Content.
remove(Flowfiles::flowfiles()) -> {{value, flowfile()}, flowfiles()} | {empty, flowfiles()}
Remove and returns a flowfile from Flowfile.
Generated by EDoc