Hi, I have a need to create a new stream from a bounded and unbounded stream i.e. create a stream populated with messages from the bounded stream and at the end of the bounded stream add messages from the unbounded stream to the new stream continuously. I know there's stream unions but the key here is that the order of messages is important.
I was looking at using a source function as per this https://stackoverflow.com/a/48711260 but it seems that source functions are being deprecated. Is there an alternative method to do this ? cheers Noel