tokio/examples
John-John Tedro 97e7830364
net: provide NamedPipe{Client, Server} types and builders (#3760)
This builds on https://github.com/tokio-rs/mio/pull/1351 and introduces the
tokio::net::windows::named_pipe module which provides low level types for
building and communicating asynchronously over windows named pipes.

Named pipes require the `net` feature flag to be enabled on Windows.

Co-authored-by: Alice Ryhl <alice@ryhl.io>
2021-06-15 08:13:31 +02:00
..
2021-03-09 19:54:10 +01:00

Examples of how to use Tokio

This directory contains a number of examples showcasing various capabilities of the tokio crate.

All examples can be executed with:

cargo run --example $name

A good starting point for the examples would be hello_world and echo. Additionally the tokio website contains additional guides for some of the examples.

For a larger "real world" example, see the mini-redis repository.

If you've got an example you'd like to see here, please feel free to open an issue. Otherwise if you've got an example you'd like to add, please feel free to make a PR!