Package akka.stream.testkit
Class TestPublisher$
- java.lang.Object
- 
- akka.stream.testkit.TestPublisher$
 
- 
 public class TestPublisher$ extends java.lang.ObjectProvides factory methods for various Publishers.
- 
- 
Field SummaryFields Modifier and Type Field Description static TestPublisher$MODULE$Static reference to the singleton instance of this Scala object.
 - 
Constructor SummaryConstructors Constructor Description TestPublisher$()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> org.reactivestreams.Publisher<T>empty()Publisher that signals complete to subscribers, after handing a void subscription.<T> org.reactivestreams.Publisher<T>error(java.lang.Throwable cause)Publisher that signals error to subscribers immediately after handing out subscription.<T> org.reactivestreams.Publisher<T>lazyEmpty()Publisher that subscribes the subscriber and completes after the first request.<T> org.reactivestreams.Publisher<T>lazyError(java.lang.Throwable cause)Publisher that subscribes the subscriber and signals error after the first request.<T> TestPublisher.ManualProbe<T>manualProbe(boolean autoOnSubscribe, ActorSystem system)Probe that implementsPublisherinterface.<T> booleanmanualProbe$default$1()<T> TestPublisher.Probe<T>probe(long initialPendingRequests, ActorSystem system)Probe that implementsPublisherinterface and tracks demand.<T> longprobe$default$1()
 
- 
- 
- 
Field Detail- 
MODULE$public static final TestPublisher$ MODULE$ Static reference to the singleton instance of this Scala object.
 
- 
 - 
Method Detail- 
emptypublic <T> org.reactivestreams.Publisher<T> empty() Publisher that signals complete to subscribers, after handing a void subscription.
 - 
lazyEmptypublic <T> org.reactivestreams.Publisher<T> lazyEmpty() Publisher that subscribes the subscriber and completes after the first request.
 - 
errorpublic <T> org.reactivestreams.Publisher<T> error(java.lang.Throwable cause) Publisher that signals error to subscribers immediately after handing out subscription.
 - 
lazyErrorpublic <T> org.reactivestreams.Publisher<T> lazyError(java.lang.Throwable cause) Publisher that subscribes the subscriber and signals error after the first request.
 - 
manualProbepublic <T> TestPublisher.ManualProbe<T> manualProbe(boolean autoOnSubscribe, ActorSystem system) Probe that implementsPublisherinterface.
 - 
manualProbe$default$1public <T> boolean manualProbe$default$1() 
 - 
probepublic <T> TestPublisher.Probe<T> probe(long initialPendingRequests, ActorSystem system) Probe that implementsPublisherinterface and tracks demand.
 - 
probe$default$1public <T> long probe$default$1() 
 
- 
 
-