Browse Source

Coroutine

pull/28/head
Jure Šorn 6 years ago
parent
commit
f12f6b9bd4
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -1573,7 +1573,7 @@ Coroutine
--------- ---------
* **Similar to generator, but generator pulls data through the pipe with iteration, while coroutine pushes data into the pipeline with send().** * **Similar to generator, but generator pulls data through the pipe with iteration, while coroutine pushes data into the pipeline with send().**
* **Coroutines provide more powerful data routing possibilities than iterators.** * **Coroutines provide more powerful data routing possibilities than iterators.**
* **If you built a collection of simple data processing components, you can glue them together into complex arrangements of pipes, branches, merging, etc.**
* **If you build a collection of simple data processing components, you can glue them together into complex arrangements of pipes, branches, merging, etc.**
### Helper Decorator ### Helper Decorator
* **All coroutines must be "primed" by first calling next().** * **All coroutines must be "primed" by first calling next().**

Loading…
Cancel
Save