Language Constructs of Splash¶
Overview¶
TODO: Description
1. Component¶
TODO: Description
1-A. Processing Block¶
The processing block is the smallest execution unit of stream processing. It takes a set of data elements as input, performs an operation defined by the developer, and outputs the results.
1-B. Factory¶
The factory is the largest building block of stream processing and contains a data flow graph that combines Splash language constructs internally. The node of the data flow graph is the component. The edge of the data flow graph is the pipe.
1-C. Fusion Operator¶
The fusion operator is an operator that merges multiple stream data into one stream data.
1-D. Selection Operator¶
The selection operator is an operator that selects the delivery path for an input stream data.
1-E. Source¶
TODO: Description
1-F. Sink¶
TODO: Description

