Class TestSubscriber
- java.lang.Object
-
- io.github.qsy7.examples.platform.java8.streams.prototype.TestSubscriber
-
-
Constructor Summary
Constructors Constructor Description TestSubscriber()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(Throwable t)voidonNext(String s)voidonSubscribe(org.reactivestreams.Subscription s)
-
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription s)
- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<String>
-
onNext
public void onNext(String s)
- Specified by:
onNextin interfaceorg.reactivestreams.Subscriber<String>
-
onError
public void onError(Throwable t)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<String>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<String>
-
-