Unite Streams
1 version
Unite streams
Merges multiple input streams of the same type into a single output stream, emitting values in the order they arrive.
Use this when
- You are fusing parallel sensor or telemetry feeds that share a type (e.g. two temperature sources).
- You need a unified chronological stream for logging or timeline analysis.
- You want a single downstream slot fed by multiple upstream producers.
What it does
Consumes messages from any of the input streams and forwards them onto a single output stream in arrival order. No ordering guarantees beyond "as they arrive."
Inputs
| Type | Description |
|---|---|
t... | Any number of streams, all of the same type. |
Outputs
| Type | Description |
|---|---|
t | Interleaved messages from all input streams. |
Parameters
This transformation takes no parameters.
Works best with
- Multi-source event fusion pipelines.
- Downstream logging or timeline-reconstruction components.
Caveats
- Arrival order is non-deterministic across streams.
- All input streams must share the same type — use
Pack unionfor mixed types.
Versions
- e9f887d2defaultlatestlinuxTransformation