41
41
import rx .operators .OperationConcat ;
42
42
import rx .operators .OperationDefer ;
43
43
import rx .operators .OperationDematerialize ;
44
+ import rx .operators .OperationGroupBy ;
44
45
import rx .operators .OperationFilter ;
45
46
import rx .operators .OperationFinally ;
46
47
import rx .operators .OperationMap ;
59
60
import rx .operators .OperationSynchronize ;
60
61
import rx .operators .OperationTake ;
61
62
import rx .operators .OperationTakeLast ;
63
+ import rx .operators .OperationTakeUntil ;
62
64
import rx .operators .OperationTakeWhile ;
65
+ import rx .operators .OperationToIterator ;
63
66
import rx .operators .OperationToObservableFuture ;
64
67
import rx .operators .OperationToObservableIterable ;
65
68
import rx .operators .OperationToObservableList ;
66
69
import rx .operators .OperationToObservableSortedList ;
67
70
import rx .operators .OperationWhere ;
68
71
import rx .operators .OperationZip ;
69
- import rx .operators .OperatorGroupBy ;
70
- import rx .operators .OperatorTakeUntil ;
71
- import rx .operators .OperatorToIterator ;
72
72
import rx .plugins .RxJavaErrorHandler ;
73
73
import rx .plugins .RxJavaObservableExecutionHook ;
74
74
import rx .plugins .RxJavaPlugins ;
@@ -1303,7 +1303,7 @@ public static <T> Observable<T> merge(Observable<T>... source) {
1303
1303
* @return An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation.
1304
1304
*/
1305
1305
public static <T , E > Observable <T > takeUntil (final Observable <T > source , final Observable <E > other ) {
1306
- return OperatorTakeUntil .takeUntil (source , other );
1306
+ return OperationTakeUntil .takeUntil (source , other );
1307
1307
}
1308
1308
1309
1309
/**
@@ -1355,7 +1355,7 @@ public static <T> Observable<T> finallyDo(Observable<T> source, Action0 action)
1355
1355
* @return an observable of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
1356
1356
*/
1357
1357
public static <K , T , R > Observable <GroupedObservable <K , R >> groupBy (Observable <T > source , final Func1 <T , K > keySelector , final Func1 <T , R > elementSelector ) {
1358
- return create (OperatorGroupBy .groupBy (source , keySelector , elementSelector ));
1358
+ return create (OperationGroupBy .groupBy (source , keySelector , elementSelector ));
1359
1359
}
1360
1360
1361
1361
/**
@@ -1372,7 +1372,7 @@ public static <K, T, R> Observable<GroupedObservable<K, R>> groupBy(Observable<T
1372
1372
* @return an observable of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
1373
1373
*/
1374
1374
public static <K , T > Observable <GroupedObservable <K , T >> groupBy (Observable <T > source , final Func1 <T , K > keySelector ) {
1375
- return create (OperatorGroupBy .groupBy (source , keySelector ));
1375
+ return create (OperationGroupBy .groupBy (source , keySelector ));
1376
1376
}
1377
1377
1378
1378
/**
@@ -2041,7 +2041,7 @@ public Iterator<T> iterator() {
2041
2041
* @return the iterator that could be used to iterate over the elements of the observable.
2042
2042
*/
2043
2043
public static <T > Iterator <T > getIterator (Observable <T > that ) {
2044
- return OperatorToIterator .toIterator (that );
2044
+ return OperationToIterator .toIterator (that );
2045
2045
}
2046
2046
2047
2047
/**
0 commit comments