Hi Elias,
sorry for the slow answer. You were right that the answer is currently no.
However, people are currently working on changing the way the stream operators work. This will allow the operator to decide from which input to read next. Having such a functionality will enable us to implement proper side inputs which will also cover your use case.
At the moment, one thing you could try is to buffer events in operator state until you have fully consumed the other stream. Upon seeing all events from the other stream (needs a proper termination event you can detect) you can then replay all the buffered events. This could however entail quite a big user state.
Cheers,
Till