forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActions.java
More file actions
477 lines (437 loc) · 13.7 KB
/
Actions.java
File metadata and controls
477 lines (437 loc) · 13.7 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/**
* Copyright 2014 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package rx.functions;
import rx.Observer;
/**
* Utility class for the Action interfaces.
*/
public final class Actions {
private Actions() {
throw new IllegalStateException("No instances!");
}
@SuppressWarnings("unchecked")
public static final <T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> empty() {
return (EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>) EMPTY_ACTION;
}
@SuppressWarnings("rawtypes")
private static final EmptyAction EMPTY_ACTION = new EmptyAction();
private static final class EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> implements
Action0,
Action1<T0>,
Action2<T0, T1>,
Action3<T0, T1, T2>,
Action4<T0, T1, T2, T3>,
Action5<T0, T1, T2, T3, T4>,
Action6<T0, T1, T2, T3, T4, T5>,
Action7<T0, T1, T2, T3, T4, T5, T6>,
Action8<T0, T1, T2, T3, T4, T5, T6, T7>,
Action9<T0, T1, T2, T3, T4, T5, T6, T7, T8>,
ActionN {
@Override
public void call() {
}
@Override
public void call(T0 t1) {
}
@Override
public void call(T0 t1, T1 t2) {
}
@Override
public void call(T0 t1, T1 t2, T2 t3) {
}
@Override
public void call(T0 t1, T1 t2, T2 t3, T3 t4) {
}
@Override
public void call(T0 t1, T1 t2, T2 t3, T3 t4, T4 t5) {
}
@Override
public void call(T0 t1, T1 t2, T2 t3, T3 t4, T4 t5, T5 t6) {
}
@Override
public void call(T0 t1, T1 t2, T2 t3, T3 t4, T4 t5, T5 t6, T6 t7) {
}
@Override
public void call(T0 t1, T1 t2, T2 t3, T3 t4, T4 t5, T5 t6, T6 t7, T7 t8) {
}
@Override
public void call(T0 t1, T1 t2, T2 t3, T3 t4, T4 t5, T5 t6, T6 t7, T7 t8, T8 t9) {
}
@Override
public void call(Object... args) {
}
}
/**
* Extracts a method reference to the observer's onNext method
* in the form of an Action1.
* <p>Java 8: observer::onNext</p>
*
* @param observer
* the observer to use
* @return an action which calls the observer's onNext method.
*/
public static <T> Action1<T> onNextFrom(final Observer<T> observer) {
return new Action1<T>() {
@Override
public void call(T t1) {
observer.onNext(t1);
}
};
}
/**
* Extracts a method reference to the observer's onError method
* in the form of an Action1.
* <p>Java 8: observer::onError</p>
*
* @param observer
* the observer to use
* @return an action which calls the observer's onError method.
*/
public static <T> Action1<Throwable> onErrorFrom(final Observer<T> observer) {
return new Action1<Throwable>() {
@Override
public void call(Throwable t1) {
observer.onError(t1);
}
};
}
/**
* Extracts a method reference to the observer's onCompleted method
* in the form of an Action0.
* <p>Java 8: observer::onCompleted</p>
*
* @param observer
* the observer to use
* @return an action which calls the observer's onCompleted method.
*/
public static <T> Action0 onCompletedFrom(final Observer<T> observer) {
return new Action0() {
@Override
public void call() {
observer.onCompleted();
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static Func0<Void> toFunc(final Action0 action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1> Func1<T1, Void> toFunc(final Action1<T1> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1, T2> Func2<T1, T2, Void> toFunc(final Action2<T1, T2> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1, T2, T3> Func3<T1, T2, T3, Void> toFunc(final Action3<T1, T2, T3> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1, T2, T3, T4> Func4<T1, T2, T3, T4, Void> toFunc(final Action4<T1, T2, T3, T4> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5> Func5<T1, T2, T3, T4, T5, Void> toFunc(
final Action5<T1, T2, T3, T4, T5> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, T6> Func6<T1, T2, T3, T4, T5, T6, Void> toFunc(
final Action6<T1, T2, T3, T4, T5, T6> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, T6, T7> Func7<T1, T2, T3, T4, T5, T6, T7, Void> toFunc(
final Action7<T1, T2, T3, T4, T5, T6, T7> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, T6, T7, T8> Func8<T1, T2, T3, T4, T5, T6, T7, T8, Void> toFunc(
final Action8<T1, T2, T3, T4, T5, T6, T7, T8> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, T6, T7, T8, T9> Func9<T1, T2, T3, T4, T5, T6, T7, T8, T9, Void> toFunc(
final Action9<T1, T2, T3, T4, T5, T6, T7, T8, T9> action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @return {@link Func0}
*/
public static FuncN<Void> toFunc(
final ActionN action) {
return toFunc(action, (Void) null);
}
/**
* Convert an action to a function which calls
* the action returns the given result.
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <R> Func0<R> toFunc(final Action0 action, final R result) {
return new Func0<R>() {
@Override
public R call() {
action.call();
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, R> Func1<T1, R> toFunc(final Action1<T1> action, final R result) {
return new Func1<T1, R>() {
@Override
public R call(T1 t1) {
action.call(t1);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, T2, R> Func2<T1, T2, R> toFunc(final Action2<T1, T2> action, final R result) {
return new Func2<T1, T2, R>() {
@Override
public R call(T1 t1, T2 t2) {
action.call(t1, t2);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, T2, T3, R> Func3<T1, T2, T3, R> toFunc(final Action3<T1, T2, T3> action, final R result) {
return new Func3<T1, T2, T3, R>() {
@Override
public R call(T1 t1, T2 t2, T3 t3) {
action.call(t1, t2, t3);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, R> Func4<T1, T2, T3, T4, R> toFunc(final Action4<T1, T2, T3, T4> action, final R result) {
return new Func4<T1, T2, T3, T4, R>() {
@Override
public R call(T1 t1, T2 t2, T3 t3, T4 t4) {
action.call(t1, t2, t3, t4);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, R> Func5<T1, T2, T3, T4, T5, R> toFunc(
final Action5<T1, T2, T3, T4, T5> action, final R result) {
return new Func5<T1, T2, T3, T4, T5, R>() {
@Override
public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5) {
action.call(t1, t2, t3, t4, t5);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, T6, R> Func6<T1, T2, T3, T4, T5, T6, R> toFunc(
final Action6<T1, T2, T3, T4, T5, T6> action, final R result) {
return new Func6<T1, T2, T3, T4, T5, T6, R>() {
@Override
public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6) {
action.call(t1, t2, t3, t4, t5, t6);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, T6, T7, R> Func7<T1, T2, T3, T4, T5, T6, T7, R> toFunc(
final Action7<T1, T2, T3, T4, T5, T6, T7> action, final R result) {
return new Func7<T1, T2, T3, T4, T5, T6, T7, R>() {
@Override
public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7) {
action.call(t1, t2, t3, t4, t5, t6, t7);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, T6, T7, T8, R> Func8<T1, T2, T3, T4, T5, T6, T7, T8, R> toFunc(
final Action8<T1, T2, T3, T4, T5, T6, T7, T8> action, final R result) {
return new Func8<T1, T2, T3, T4, T5, T6, T7, T8, R>() {
@Override
public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8) {
action.call(t1, t2, t3, t4, t5, t6, t7, t8);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R> Func9<T1, T2, T3, T4, T5, T6, T7, T8, T9, R> toFunc(
final Action9<T1, T2, T3, T4, T5, T6, T7, T8, T9> action, final R result) {
return new Func9<T1, T2, T3, T4, T5, T6, T7, T8, T9, R>() {
@Override
public R call(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9) {
action.call(t1, t2, t3, t4, t5, t6, t7, t8, t9);
return result;
}
};
}
/**
* Convert an action to a function which calls
* the action returns Void (null).
*
* @param action
* @param result
* @return {@link Func0}
*/
public static <R> FuncN<R> toFunc(
final ActionN action, final R result) {
return new FuncN<R>() {
@Override
public R call(Object... args) {
action.call(args);
return result;
}
};
}
}