Package rx.internal.operators
Class OperatorEagerConcatMap<T,R>
- java.lang.Object
-
- rx.internal.operators.OperatorEagerConcatMap<T,R>
-
- All Implemented Interfaces:
Func1<Subscriber<? super R>,Subscriber<? super T>>
,Function
,Observable.Operator<R,T>
public final class OperatorEagerConcatMap<T,R> extends java.lang.Object implements Observable.Operator<R,T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
OperatorEagerConcatMap.EagerInnerSubscriber<T>
(package private) static class
OperatorEagerConcatMap.EagerOuterProducer
(package private) static class
OperatorEagerConcatMap.EagerOuterSubscriber<T,R>
-
Field Summary
Fields Modifier and Type Field Description (package private) int
bufferSize
(package private) Func1<? super T,? extends Observable<? extends R>>
mapper
private int
maxConcurrent
-
Constructor Summary
Constructors Constructor Description OperatorEagerConcatMap(Func1<? super T,? extends Observable<? extends R>> mapper, int bufferSize, int maxConcurrent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>
call(Subscriber<? super R> t)
-
-
-
Field Detail
-
mapper
final Func1<? super T,? extends Observable<? extends R>> mapper
-
bufferSize
final int bufferSize
-
maxConcurrent
private final int maxConcurrent
-
-
Constructor Detail
-
OperatorEagerConcatMap
public OperatorEagerConcatMap(Func1<? super T,? extends Observable<? extends R>> mapper, int bufferSize, int maxConcurrent)
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super R> t)
-
-