Class WebSocketSendSubscriber

java.lang.Object
graphql.kickstart.servlet.subscriptions.WebSocketSendSubscriber
All Implemented Interfaces:
org.reactivestreams.Subscriber<String>

public class WebSocketSendSubscriber extends Object implements org.reactivestreams.Subscriber<String>
  • Constructor Details

    • WebSocketSendSubscriber

      public WebSocketSendSubscriber()
  • Method Details

    • onSubscribe

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

      public void onNext(String message)
      Specified by:
      onNext in interface org.reactivestreams.Subscriber<String>
    • onError

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

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