Package rx.internal.operators
Class OnSubscribeGroupJoin.WindowObservableFunc<T>
- java.lang.Object
-
- rx.internal.operators.OnSubscribeGroupJoin.WindowObservableFunc<T>
-
- All Implemented Interfaces:
Action
,Action1<Subscriber<? super T>>
,Function
,Observable.OnSubscribe<T>
static final class OnSubscribeGroupJoin.WindowObservableFunc<T> extends java.lang.Object implements Observable.OnSubscribe<T>
The reference-counted window observable. Subscribes to the underlying Observable by using a reference-counted subscription.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) class
OnSubscribeGroupJoin.WindowObservableFunc.WindowSubscriber
Observe activities on the window.
-
Field Summary
Fields Modifier and Type Field Description (package private) RefCountSubscription
refCount
(package private) Observable<T>
underlying
-
Constructor Summary
Constructors Constructor Description WindowObservableFunc(Observable<T> underlying, RefCountSubscription refCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
call(Subscriber<? super T> t1)
-
-
-
Field Detail
-
refCount
final RefCountSubscription refCount
-
underlying
final Observable<T> underlying
-
-
Constructor Detail
-
WindowObservableFunc
public WindowObservableFunc(Observable<T> underlying, RefCountSubscription refCount)
-
-
Method Detail
-
call
public void call(Subscriber<? super T> t1)
-
-