Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 569 Bytes

component-output.adoc

File metadata and controls

18 lines (14 loc) · 569 Bytes

Defining an output

What is an output

An Output is a Processor that does not return any data.

Conceptually, an output is a data listener. It matches the concept of processor. Being the last component of the execution chain or returning no data makes your processor an output component:

@ElementListener
public void store(final MyData data) {
    // ...
}