public class MappingSubscriber<T,U> extends Object implements org.reactivestreams.Subscriber<T>
| Modifier and Type | Method and Description | 
|---|---|
| static <T,U> MappingSubscriber<T,U> | create(org.reactivestreams.Subscriber<? super U> subscriber,
      Function<T,U> mapFunction) | 
| void | onComplete() | 
| void | onError(Throwable throwable) | 
| void | onNext(T t) | 
| void | onSubscribe(org.reactivestreams.Subscription subscription) | 
public static <T,U> MappingSubscriber<T,U> create(org.reactivestreams.Subscriber<? super U> subscriber, Function<T,U> mapFunction)
public void onSubscribe(org.reactivestreams.Subscription subscription)
onSubscribe in interface org.reactivestreams.Subscriber<T>public void onError(Throwable throwable)
onError in interface org.reactivestreams.Subscriber<T>public void onComplete()
onComplete in interface org.reactivestreams.Subscriber<T>Copyright © 2021. All rights reserved.