public final i a(final rx.c.b<? super T> bVar, final rx.c.b<Throwable> bVar2) {
if (bVar == null) {
throw new IllegalArgumentException("onNext can not be null");
} else if (bVar2 != null) {
return b((h<? super T>) new h<T>() {
public final void onCompleted() {
}
public final void onError(Throwable th) {
bVar2.call(th);
}
public final void onNext(T t) {
bVar.call(t);
}
});
} else {
throw new IllegalArgumentException("onError can not be null");
}
}
public final i a(final d<? super T> dVar) {
package rx.c;
/ compiled from: MusicApp /
public interface b<T1> {
void call(T1 t1);
}
我想问一下这里的接口怎么还设置一个T1 类型呢?接口不是没有类型之分的吗?
这个call()
我再这里搜索他的用例没搜到这是怎么回事?都是调用的 没有实现
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…