You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Lessons/Combine-Pt.1/README.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,10 @@ let _ = Just(8)
120
120
121
121
<asideclass="notes">
122
122
The pipeline starts with the publisher Just, which responds with the value that its defined with (in this case, the Integer 8). The output type is <Integer>, and the failure type is <Never>.
123
-
The pipeline then has a map operator, which is transforming the value and its type. In this example it is ignoring the published input and returning a string. This is also transforming the output type to <String>, and leaving the failure type still set as <Never>.
123
+
124
+
The pipeline then has a map operator, which is transforming the value and its type. In this example it is ignoring the published input and returning a string.
125
+
126
+
This is also transforming the output type to <String>, and leaving the failure type still set as <Never>.
124
127
The pipeline then ends with a sink subscriber.
125
128
</aside>
126
129
@@ -140,15 +143,21 @@ Focus on describing how a specific pipeline changes the stream of data.
A publisher is generating and sending data, operators are reacting to that data and potentially changing it, and subscribers requesting and accepting it. On top of that, some operators may change the timing when events happen. We can illustrate these changes with a visual description called a marble diagram.
146
+
A publisher is generating and sending data, operators are reacting to that data and potentially changing it, and subscribers requesting and accepting it.
147
+
148
+
On top of that, some operators may change the timing when events happen. We can illustrate these changes with a visual description called a marble diagram.
144
149
</aside>
145
150
146
151
<!-- > -->
147
152
148
153
## In Class Activity
149
154
150
-
Instructions [here]()
155
+
**5 min read, 10 min share**
156
+
157
+
Visit [this website](https://rxmarbles.com) that has marble diagrams for some operators in Rx.
0 commit comments