This operator gets another already processed stream as input. With this operator it is possible to use another (already preprocessed)
stream, for example. `T` represents the tuple type, `stream` is another data stream, possibly defined per`toStream()` operator
This operator takes an existing stream as input. With this operator it is possible to use another (already created)
stream, e.g. to reuse a stream or define a view on it. `T` represents the tuple type, `stream` is another data stream, possibly populated by the`toStream()` operator
explained later on.
The following example defines the structure of a tuple `T1` first, along with a new stream element. Then, tuples are pushed into this
stream by an already existing topology. Finally, the stream is then used in `fromStream`.
The following example registers a new named stream object of type `T1` first. Then, tuples are pushed into this
stream by an already existing topology. Finally, the stream is then used in `fromStream` in another topology.