Class WebSocketSendSubscriber

  • All Implemented Interfaces:
    org.reactivestreams.Subscriber<java.lang.String>

    public class WebSocketSendSubscriber
    extends java.lang.Object
    implements org.reactivestreams.Subscriber<java.lang.String>
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void onComplete()  
      void onError​(java.lang.Throwable t)  
      void onNext​(java.lang.String message)  
      void onSubscribe​(org.reactivestreams.Subscription subscription)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • WebSocketSendSubscriber

        public WebSocketSendSubscriber()
    • Method Detail

      • onSubscribe

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

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

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

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