gj icon indicating copy to clipboard operation
gj copied to clipboard

event loop and promises in Rust

Results 6 gj issues
Sort by recently updated
recently updated
newest added

This issue was automatically generated. Feel free to close without ceremony if you do not agree with re-licensing or if it is not possible for other reasons. Respond to @cmr...

Right now it seems that you can only do blocking I/O from and to files; this also restricts some use cases of capnp-rpc-rust. Right now it seems that mio doesn't...

This may just be bikeshedding, I can't really tell. The first thing that called my attention when looking into this project is the use of `err`/`ok` naming, resembling (likely intentionally)...

gj shows a lot of promise (no pun intended!). It would be wise to reexport the mio tcp/unix types under gj so people do not have to link directly to...

I've taken a crack at combining the common functionality between tcp and unix into a generic Stream, Reader, Writer, and Listener. This should massively reduce the amount of duplicate code...

Now that we have promise-based IO, it would be nice to have something similar to Rust's `mpsc` with an interface like `gj::io::tcp` or `gj::io::unix` which returns a `Promise`. My particular...