I have got a pipeline which, after a decoding step, produces a stream with the following structure:
| PixelData | MetaData |
PixelData
will then be processed by a separate Flow
which will produce a stream of NewPixelData
eventually. These NewPixelData
then need to be re-encoded using the MetaData
.
| NewPixelData_2 | NewPixelData_1 | MetaData |
to produce:
| EncodedData_2 | EncodedData_1 |
Which topology and / or stream combinators can I use to achieve this?
EDIT: Fix typo reported by @bentito