public class ChatSubscriberProxy<T>
extends java.lang.Object
implements org.reactivestreams.Subscriber<T>
| 限定符和类型 | 方法和说明 |
|---|---|
static <T> org.reactivestreams.Subscriber<T> |
of(org.reactivestreams.Subscriber<T> subscriber)
构建
|
void |
onComplete() |
void |
onError(java.lang.Throwable throwable) |
void |
onNext(T t) |
void |
onSubscribe(org.reactivestreams.Subscription subscription) |
public static <T> org.reactivestreams.Subscriber<T> of(org.reactivestreams.Subscriber<T> subscriber)
public void onSubscribe(org.reactivestreams.Subscription subscription)
onSubscribe 在接口中 org.reactivestreams.Subscriber<T>public void onError(java.lang.Throwable throwable)
onError 在接口中 org.reactivestreams.Subscriber<T>public void onComplete()
onComplete 在接口中 org.reactivestreams.Subscriber<T>