Package akka.stream.testkit.scaladsl
Class TestSink$
- java.lang.Object
-
- akka.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 Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T> Sink<T,TestSubscriber.Probe<T>>
apply(ClassicActorSystemProvider system)
A Sink that materialized to aTestSubscriber.Probe
.<T> Sink<T,TestSubscriber.Probe<T>>
probe(ActorSystem system)
Deprecated.Use `TestSink()` with implicit ClassicActorSystemProvider instead.
-
-
-
Field Detail
-
MODULE$
public static final TestSink$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
probe
public <T> Sink<T,TestSubscriber.Probe<T>> probe(ActorSystem system)
Deprecated.Use `TestSink()` with implicit ClassicActorSystemProvider instead. Since 2.7.0.A Sink that materialized to aTestSubscriber.Probe
.
-
apply
public <T> Sink<T,TestSubscriber.Probe<T>> apply(ClassicActorSystemProvider system)
A Sink that materialized to aTestSubscriber.Probe
.
-
-