summaryrefslogtreecommitdiffstats
path: root/src/bin/echo.rs
AgeCommit message (Collapse)Author
2016-09-01Move binaries to examplesAlex Crichton
2016-08-31Update to futures masterAlex Crichton
* Remove `LoopData` as it's no longer necessary * Add `LoopHandle::spawn` to spawn new futures onto an event loop * Add `LoopData::spawn` to also spawn new futures onto an event loop * Rejigger the implementation of the event loop a bit (make a slab of futures), but otherwise everything else is pretty constant.
2016-08-26Rename to tokio-core, add in futures-ioAlex Crichton
Renames the futures-mio crate to tokio-core, pulls in the futures-io crate under an `io` module, and gets everything compiling.
2016-08-20Revert to using futures::lazy(), which is in fact needed.David Renshaw
2016-08-20update comment and simplify echo exampleDavid Renshaw
2016-08-17Update futures-minihttpAlex Crichton
2016-08-17Re-work I/OAlex Crichton
* Auto-register interest whenever we see WouldBlock * Remove implementations of `Stream<Item=Ready>`, no longer needed * Add explicit `poll_{read,write}` methods, if needed * Remove all I/O streams, libstd ones suffice * Update all I/O futures
2016-08-11Listening vs ListeneringYale Cason III
Not trying to be pedantic, just noticed this.
2016-07-30Let's rename everything!Alex Crichton