Commit 12f48f87e5e7e5e2d9d27836952b476f235fff89
Merge pull request #80 from pull-stream/jamen-docs
Add to docsDominic Tarr authored on 10/31/2016, 11:40:40 AM
GitHub committed on 10/31/2016, 11:40:40 AM
Parent: 9d9abd26492b94a6b650b38e7db4ef41257d64d7
Parent: 22c80b9c74339096c81f7668440f2b298fad8116
Files changed
docs/glossary.md | changed |
docs/glossary.md | ||
---|---|---|
@@ -21,16 +21,20 @@ | ||
21 | 21 | |
22 | 22 | Eager means to do something early, so you have it ready |
23 | 23 | immediately when you need it. |
24 | 24 | |
25 | -## Source | |
25 | +## [Source](sources/index.md) | |
26 | 26 | |
27 | -The first stream in the pipeline. The Source is not writable. | |
27 | +The first stream in the pipeline. The Source is not a reader (not writable). | |
28 | 28 | |
29 | -## Sink | |
29 | +## [Sink](sinks/index.md) | |
30 | 30 | |
31 | -The last Stream in the pipeline. The Sink is not readable. | |
31 | +The last stream in the pipeline. The Sink is not readable. | |
32 | 32 | |
33 | +## [Through](throughs/index.md) | |
34 | + | |
35 | +The stream (or streams) in the middle of the pipeline, between your source and sink. A through is a reader and readable. | |
36 | + | |
33 | 37 | ## Push vs Pull |
34 | 38 | |
35 | 39 | A pull-stream is a stream where the movement of data |
36 | 40 | is initiated by the sink, and a push-stream |
Built with git-ssb-web