| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: tutorial | 2 layout: tutorial |
| 3 title: "Use Streams for Data" | 3 title: "Use Streams for Data" |
| 4 description: | 4 description: |
| 5 Learn how to consume single-subscriber and broadcast streams, | 5 Learn how to consume single-subscriber and broadcast streams, |
| 6 with real-world uses. | 6 with real-world uses. |
| 7 tutorial: | 7 tutorial: |
| 8 id: streams | 8 id: streams |
| 9 next: fetchdata/ | 9 next: fetchdata/ |
| 10 next-title: "Fetch Data Dynamically" | 10 next-title: "Fetch Data Dynamically" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * Use transformers to modify the data as it becomes available. | 22 * Use transformers to modify the data as it becomes available. |
| 23 * Stream has methods for skipping, selecting, filtering, and validating data. | 23 * Stream has methods for skipping, selecting, filtering, and validating data. |
| 24 * Streams provide a way to respond to errors. | 24 * Streams provide a way to respond to errors. |
| 25 | 25 |
| 26 {% endcapture %} | 26 {% endcapture %} |
| 27 | 27 |
| 28 {% capture sample_links %} | 28 {% capture sample_links %} |
| 29 | 29 |
| 30 | 30 |
| 31 <p markdown="1"> This tutorial features these examples | 31 <p markdown="1"> This tutorial features these examples |
| 32 in the `bin` directory:</p> | 32 in the `streams/bin` directory:</p> |
| 33 | 33 |
| 34 * feet_wet_streams.dart | 34 * feet_wet_streams.dart |
| 35 * html_streams.dart | 35 * html_streams.dart |
| 36 * http_request.dart | 36 * http_request.dart |
| 37 | 37 |
| 38 <p> | 38 <p> |
| 39 Don't have the source code? | 39 Don't have the source code? |
| 40 <a href="https://github.com/dart-lang/dart-tutorials-samples/archive/master.zip"
> | 40 <a href="https://github.com/dart-lang/dart-tutorials-samples/archive/master.zip"
> |
| 41 Download it. | 41 Download it. |
| 42 </a> | 42 </a> |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 Chris Buckett is a Technical Manager for | 502 Chris Buckett is a Technical Manager for |
| 503 [Entity Group Ltd](http://www.entity.co.uk/), responsible for building and | 503 [Entity Group Ltd](http://www.entity.co.uk/), responsible for building and |
| 504 delivering enterprise client-server webapps, mostly with GWT, Java and .Net. | 504 delivering enterprise client-server webapps, mostly with GWT, Java and .Net. |
| 505 He runs the [dartwatch.com blog](http://blog.dartwatch.com/), and has written | 505 He runs the [dartwatch.com blog](http://blog.dartwatch.com/), and has written |
| 506 the book _Dart in Action_, which is available | 506 the book _Dart in Action_, which is available |
| 507 at [manning.com](http://www.manning.com/buckett). | 507 at [manning.com](http://www.manning.com/buckett). |
| 508 | 508 |
| 509 {% endcapture %} | 509 {% endcapture %} |
| 510 | 510 |
| 511 {% include tutorial.html %} | 511 {% include tutorial.html %} |
| OLD | NEW |