Skip to content

Please how can I join more than more than two streams #252

Closed Answered by LGouellec
Oladeji asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @Oladeji ,

First a join operation contains two elements, stream-table, table-table or stream-stream.

So you can't join three streams between them (same behavior in JAVA).

But you can link multiple join like

var stream1 = builder.Stream(...);

var stream2 = builder.Stream(...);

var stream3 = builder.Stream(...);

stream1.Join(stream2, ....)
.Join(stream3, ....)
.To(output);

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by LGouellec
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants