Class SseTypeSafeProcessor<T>

java.lang.Object
org.apache.cxf.microprofile.client.sse.SseTypeSafeProcessor<T>
All Implemented Interfaces:
org.reactivestreams.Processor<jakarta.ws.rs.sse.InboundSseEvent,T>, org.reactivestreams.Publisher<T>, org.reactivestreams.Subscriber<jakarta.ws.rs.sse.InboundSseEvent>

public class SseTypeSafeProcessor<T> extends Object implements org.reactivestreams.Processor<jakarta.ws.rs.sse.InboundSseEvent,T>
  • Method Details

    • onSubscribe

      public void onSubscribe(org.reactivestreams.Subscription s)
      Specified by:
      onSubscribe in interface org.reactivestreams.Subscriber<T>
    • onNext

      public void onNext(jakarta.ws.rs.sse.InboundSseEvent t)
      Specified by:
      onNext in interface org.reactivestreams.Subscriber<T>
    • onError

      public void onError(Throwable t)
      Specified by:
      onError in interface org.reactivestreams.Subscriber<T>
    • onComplete

      public void onComplete()
      Specified by:
      onComplete in interface org.reactivestreams.Subscriber<T>
    • subscribe

      public void subscribe(org.reactivestreams.Subscriber<? super T> s)
      Specified by:
      subscribe in interface org.reactivestreams.Publisher<T>