Class SseTypeSafeProcessor<T>
- java.lang.Object
-
- org.apache.cxf.microprofile.client.sse.SseTypeSafeProcessor<T>
-
- All Implemented Interfaces:
org.reactivestreams.Processor<javax.ws.rs.sse.InboundSseEvent,T>,org.reactivestreams.Publisher<T>,org.reactivestreams.Subscriber<javax.ws.rs.sse.InboundSseEvent>
public class SseTypeSafeProcessor<T> extends Object implements org.reactivestreams.Processor<javax.ws.rs.sse.InboundSseEvent,T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(Throwable t)voidonNext(javax.ws.rs.sse.InboundSseEvent t)voidonSubscribe(org.reactivestreams.Subscription s)voidsubscribe(org.reactivestreams.Subscriber<? super T> s)
-
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription s)
- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<T>
-
onNext
public void onNext(javax.ws.rs.sse.InboundSseEvent t)
- Specified by:
onNextin interfaceorg.reactivestreams.Subscriber<T>
-
onError
public void onError(Throwable t)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<T>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<T>
-
-