Commit cb323a7b5f1f6750d7e9bc16d375f9c48b688dab
Merge branch 'master' of github.com:pull-stream/pull-stream
Dominic Tarr committed on 10/31/2016, 11:38:40 AMParent: 68817beb980ea6e170598acc630b7ea873d76193
Parent: 12f48f87e5e7e5e2d9d27836952b476f235fff89
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