Replies: 1 comment
-
Re: 3, I see that can_send.rs resolves my question: it calculates the in and out types when crossing locations. impl<'a, P1, C2> CanSend<'a, Cluster<'a, C2>> for Process<'a, P1> {
type In<T> = (ClusterId<C2>, T);
type Out<T> = T;
... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Trying to think through how to "design" a data flow with hydroflow and nothing better than look at the examples.
I do understand the whole mechanics, but have specific questions around the following massaged flow:
(String, ())
type here?send_bincode
to a Cluster always expects a stream of(ClusterId, Type)
? I don't see that(ClusterId, _)
type in the operator self.tick_batch()
to make sure we can use theBounded
stream operators? In other words, if we had an operator that worked inUnbounded
stream then we would not need to calltick_batch()
?Beta Was this translation helpful? Give feedback.
All reactions