T
- the type of the items emitted by both the source and merged Observable
spublic class OperatorMerge<T> extends java.lang.Object implements Observable.Operator<T,Observable<? extends T>>
Observable
s into one Observable
, without any transformation.
You can combine the items emitted by multiple Observable
s so that they act like a single Observable
, by using the merge operation.
Constructor and Description |
---|
OperatorMerge() |
OperatorMerge(boolean delayErrors) |
Modifier and Type | Method and Description |
---|---|
Subscriber<Observable<? extends T>> |
call(Subscriber<? super T> child) |
public OperatorMerge()
public OperatorMerge(boolean delayErrors)
public Subscriber<Observable<? extends T>> call(Subscriber<? super T> child)
call
in interface Func1<Subscriber<? super T>,Subscriber<? super Observable<? extends T>>>