send_bincode_interleaved does not exist anymore? #1994
-
Hi, I’m trying to work on some projects to learn this awesome framework. In a YouTube video I watched, the presenter uses a function called send_bincode_interleaved, but it seems that function has been removed. What should I use instead? I am very new to this project, this is the very simple code I am working on
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Ah yes, @shadaj we'll need to update the video at some point, let me check what it is called now |
Beta Was this translation helpful? Give feedback.
-
Was changed in http://github.com/hydro-project/hydro/pull/1975 to now be Let us know if you have any other troubles! |
Beta Was this translation helpful? Give feedback.
Was changed in http://github.com/hydro-project/hydro/pull/1975 to now be
.send_bincode(&leader).values()
which should hopefully be more intuitive..send_bincode
returns a "keyed" stream, and.values()
keeps the values and discards the key information (cluster IDs).Let us know if you have any other troubles!