Rick Richardson
Rick Richardson
Here is my proposal: https://github.com/12sidedtech/reactive-rs/blob/assoc/src/reactive.rs An echo server built using reactive components: https://github.com/12sidedtech/reactive-rs/blob/assoc/test/test.rs Here are most of the impls : https://github.com/12sidedtech/reactive-rs/blob/assoc/src/processorimpl.rs This is in a branch because I just converted...
I simplified the design a bit over that found at reactivestreams.org, largely because the references/ownership thing is quite a bit harder to get right in Rust :) Speaking of, one...
I really don't care where it lives. I need it to exist and be actively maintained. :) I disagree a little bit with a couple of the design choices made...
I'll put in a PR tonight, which will basically be a direct copy of what I've made, minus the cassandra adaptor, cause that dependency doesn't belong in here. Question: Should...
If we could organize a group effort in the Tokio channels, I bet we could get spans of code from dozens of existing projects that demonstrate these tasks.
Below is a wish-list that I've distilled from https://github.com/tokio-rs/doc-push/blob/master/outline/cookbook.md for quick reference. I'll update it with source/gist links as we find them. 1. Spawn a task to work in the...
> Download files using an HTTP client in parallel and write them to files. I just wrote this exact thing for work. I could probably sanitize it and throw it...
@FrankReh - It seems like `OwnedBuf` represents additional advancements from the discussions on Zulip. He also says that he hasn't "updated the traits yet" so I'm assuming that they will...
@ollie-etl > This will introduce a type parameter, which may be undesirable? It is undesirable, but that doesn't mean it's not worth it. Now is the time to have the...
@ollie-etl @FrankReh - If we want to not disrupt the single-thread performance, and also avoid adding Send+Sync (+ 'static?) constraints to the IntoOwnedBuf trait, the `dtor: fn(*const ())` approach might...