Package rx
Class Observable.OnSubscribeExtend<T>
- java.lang.Object
-
- rx.Observable.OnSubscribeExtend<T>
-
- Type Parameters:
T
- the value type
- All Implemented Interfaces:
Action
,Action1<Subscriber<? super T>>
,Function
,Observable.OnSubscribe<T>
- Enclosing class:
- Observable<T>
static final class Observable.OnSubscribeExtend<T> extends java.lang.Object implements Observable.OnSubscribe<T>
Transforms a OnSubscribe.call() into an Observable.subscribe() call.Note: has to be in Observable because it calls the package-private subscribe() method
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Observable<T>
parent
-
Constructor Summary
Constructors Constructor Description OnSubscribeExtend(Observable<T> parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
call(Subscriber<? super T> subscriber)
-
-
-
Field Detail
-
parent
final Observable<T> parent
-
-
Constructor Detail
-
OnSubscribeExtend
OnSubscribeExtend(Observable<T> parent)
-
-
Method Detail
-
call
public void call(Subscriber<? super T> subscriber)
-
-