-
Hi @ALL internal class Program
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
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); |
Beta Was this translation helpful? Give feedback.
-
Hi LGouellec.Thank you for your response
Oladeji
Through God we shall do valiantly
Psalm 60:12;Psalm 108:13
On Saturday, May 6, 2023 at 04:16:56 PM GMT+1, LGouellec ***@***.***> wrote:
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);
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
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