Class TestSink
- java.lang.Object
-
- org.apache.pekko.stream.testkit.scaladsl.TestSink
-
public class TestSink extends java.lang.Object
Factory methods for test sinks.
-
-
Constructor Summary
Constructors Constructor Description TestSink()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> Sink<T,TestSubscriber.Probe<T>>
apply(ClassicActorSystemProvider system)
A Sink that materialized to apekko.stream.testkit.TestSubscriber.Probe
.static <T> Sink<T,TestSubscriber.Probe<T>>
probe(ActorSystem system)
A Sink that materialized to apekko.stream.testkit.TestSubscriber.Probe
.
-
-
-
Method Detail
-
probe
public static <T> Sink<T,TestSubscriber.Probe<T>> probe(ActorSystem system)
A Sink that materialized to apekko.stream.testkit.TestSubscriber.Probe
.
-
apply
public static <T> Sink<T,TestSubscriber.Probe<T>> apply(ClassicActorSystemProvider system)
A Sink that materialized to apekko.stream.testkit.TestSubscriber.Probe
.
-
-