TLeft - the left value typeTRight - the right value typeTLeftDuration - the left duration value typeTRightDuration - the right duration typeR - the result typepublic final class OperatorJoin<TLeft,TRight,TLeftDuration,TRightDuration,R> extends java.lang.Object implements Observable.OnSubscribe<R>
| Constructor and Description | 
|---|
| OperatorJoin(Observable<TLeft> left,
            Observable<TRight> right,
            Func1<TLeft,Observable<TLeftDuration>> leftDurationSelector,
            Func1<TRight,Observable<TRightDuration>> rightDurationSelector,
            Func2<TLeft,TRight,R> resultSelector) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | call(Subscriber<? super R> t1) | 
public OperatorJoin(Observable<TLeft> left, Observable<TRight> right, Func1<TLeft,Observable<TLeftDuration>> leftDurationSelector, Func1<TRight,Observable<TRightDuration>> rightDurationSelector, Func2<TLeft,TRight,R> resultSelector)
public void call(Subscriber<? super R> t1)
call in interface Action1<Subscriber<? super R>>