Class ConvertingSubscriber<R>
- java.lang.Object
-
- org.apache.camel.component.reactive.streams.util.ConvertingSubscriber<R>
-
- All Implemented Interfaces:
org.reactivestreams.Subscriber<R>
public class ConvertingSubscriber<R> extends Object implements org.reactivestreams.Subscriber<R>
A subscriber that converts items of the given type into CamelExchanges.
-
-
Constructor Summary
Constructors Constructor Description ConvertingSubscriber(org.reactivestreams.Subscriber<org.apache.camel.Exchange> delegate, org.apache.camel.CamelContext context, Class<R> type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(Throwable throwable)voidonNext(R r)voidonSubscribe(org.reactivestreams.Subscription subscription)
-
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription subscription)
- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<R>
-
onError
public void onError(Throwable throwable)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<R>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<R>
-
-