-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_observables.coffee
193 lines (190 loc) · 5.01 KB
/
example_observables.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
module.exports = [
{
name: 'simpleMap'
description: 'The squares of a few values over time.'
observable:
factory:
type: 'fromTime'
args: [ "{1000: 1, 3000: 2, 5000: 3}" ]
operators: [
{
type: 'map'
args: [ "function(x) { return x * x }" ]
}
]
}
{
name: 'mapAndTake'
description: 'The squares of infinite values bounded by take.'
observable:
factory:
type: 'interval', args: ["500"]
operators: [
{ type: 'map', args: ["function(x) { return x * x }"] }
{ type: 'take', args: ["10"] }
]
}
{
name: "raceCondition#1"
description:
"User requests page 1, changes his mind and requests page 2, receives wrong page."
observable:
factory:
type: 'fromTime', args: ["{1000: 1, 2000: 2}"]
operators: [
{
type: 'flatMap'
args: [
{
functionDeclaration: "function(productNr) { return "
observable:
factory:
type: 'timer', args: ["(5 - productNr * 2) * 1000"]
operators: [
{ type: 'map', args: ["function(x) { return 'product ' + productNr }"] }
]
}
]
}
]
}
{
name: "fixedRaceCondition#1"
description: "Fix race condition #1 by mapping waiting for previous response before new request. The user gets the every requested page and has to wait."
observable:
factory:
type: 'fromTime', args: ["{1000: 1, 2000: 2}"]
operators: [
{
type: 'concatMap'
args: [
{
functionDeclaration: "function(productNr) { return "
observable:
factory:
type: 'timer', args: ["(5 - productNr * 2) * 1000"]
operators: [
{ type: 'map', args: ["function(x) { return 'product ' + productNr }"] }
]
}
]
}
]
}
{
name: "fixedRaceCondition#2"
description: "Fix race condition #1 by flat mapping the latest request. The user gets the latest requested page immediately."
observable:
factory:
type: 'fromTime', args: ["{1000: 1, 2000: 2}"]
operators: [
{
type: 'flatMapLatest'
args: [
{
functionDeclaration: "function(productNr) { return "
observable:
factory:
type: 'timer', args: ["(5 - productNr * 2) * 1000"]
operators: [
{ type: 'map', args: ["function(x) { return 'product ' + productNr }"] }
]
}
]
}
]
}
{
name: "wrong flatMapLatest"
description: "Using flatMapLatest is not correct when you want all the mapped results, in this case flatMap is preferred."
observable:
factory:
type: 'of', args: ["'question1', 'question2', 'question3'"]
operators: [
{
type: 'flatMapLatest'
args: [
{
functionDeclaration: "function(question) { return "
observable:
factory:
type: 'timer', args: ["1000"]
operators: [
{ type: 'map', args: ["function(x) { return 'answer' + question[question.length - 1] }"] }
]
}
]
}
]
}
{
name: 'delayWithSelector'
description: "Every value takes progressively longer to process."
observable:
factory:
type: 'interval', args: ["500"]
operators: [
{
type: 'delayWithSelector'
args: [
{
functionDeclaration: "function(input) { return "
observable:
factory:
type: 'timer', args: ["input * input * 500"]
operators: [
{
type: 'timeout'
args: ["3000"]
}
]
}
]
}
{
type: 'takeUntilWithTime'
args: ["6000"]
}
]
}
{
name: 'generateAndBuffer'
description: "Values come later and later, buffer length changes."
observable:
factory:
type: 'generateWithRelativeTime',
args: [
1,
"function(x) { return x <= 10 }"
"function(x) { return x + 1 }"
"function(x) { return x }"
"function(x) { return 200 * x }"
]
operators: [
{
type: 'bufferWithTimeOrCount'
args: [ 2000, 3 ]
}
]
}
{
name: 'merge'
description: 'Merge two unrelated observables.'
observable:
factory:
type: 'timer'
args: [ 1000 ]
operators: [
{
type: 'merge'
args: [
observable:
factory:
type: 'timer'
args: [500]
operators: []
]
}
]
}
]