-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merging two or more streams with merge-stream #2
Comments
My question, does this work even with new stream? Like if someone joins later in the call can i call this function again? And if i can, how? |
let merged = joinStreams(stream1, stream2, ...)
...
let merged2 = joinStreams(merged, stream1) Let me know it it works. |
Ok, i will try later. Thanks |
but doesn't that just overlap each other and basically stop 1 stream going over the other? |
and how would i remove a stream? |
Did you ever get this working |
Any updates on this? |
So after looking at your code, if you want to join multiple streams, this code might work:
The text was updated successfully, but these errors were encountered: