Package akka.stream.impl
Class ActorRefBackpressureSource<T>
- java.lang.Object
-
- akka.stream.stage.GraphStageWithMaterializedValue<SourceShape<T>,ActorRef>
-
- akka.stream.impl.ActorRefBackpressureSource<T>
-
- All Implemented Interfaces:
Graph<SourceShape<T>,ActorRef>
public final class ActorRefBackpressureSource<T> extends GraphStageWithMaterializedValue<SourceShape<T>,ActorRef>
INTERNAL API
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ActorRefBackpressureSource.ActorRefStage
-
Constructor Summary
Constructors Constructor Description ActorRefBackpressureSource(scala.Option<ActorRef> ackTo, java.lang.Object ackMessage, scala.PartialFunction<java.lang.Object,CompletionStrategy> completionMatcher, scala.PartialFunction<java.lang.Object,java.lang.Throwable> failureMatcher)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description scala.Tuple2<GraphStageLogic,ActorRef>
createLogicAndMaterializedValue(Attributes inheritedAttributes)
scala.Tuple2<GraphStageLogic,ActorRef>
createLogicAndMaterializedValue(Attributes inheritedAttributes, Materializer eagerMaterializer)
Attributes
initialAttributes()
Outlet<T>
out()
SourceShape<T>
shape()
The shape of a graph is all that is externally visible: its inlets and outlets.-
Methods inherited from class akka.stream.stage.GraphStageWithMaterializedValue
traversalBuilder, withAttributes
-
-
-
-
Constructor Detail
-
ActorRefBackpressureSource
public ActorRefBackpressureSource(scala.Option<ActorRef> ackTo, java.lang.Object ackMessage, scala.PartialFunction<java.lang.Object,CompletionStrategy> completionMatcher, scala.PartialFunction<java.lang.Object,java.lang.Throwable> failureMatcher)
-
-
Method Detail
-
shape
public SourceShape<T> shape()
Description copied from interface:Graph
The shape of a graph is all that is externally visible: its inlets and outlets.- Returns:
- (undocumented)
-
initialAttributes
public Attributes initialAttributes()
- Overrides:
initialAttributes
in classGraphStageWithMaterializedValue<SourceShape<T>,ActorRef>
-
createLogicAndMaterializedValue
public scala.Tuple2<GraphStageLogic,ActorRef> createLogicAndMaterializedValue(Attributes inheritedAttributes)
- Specified by:
createLogicAndMaterializedValue
in classGraphStageWithMaterializedValue<SourceShape<T>,ActorRef>
-
createLogicAndMaterializedValue
public scala.Tuple2<GraphStageLogic,ActorRef> createLogicAndMaterializedValue(Attributes inheritedAttributes, Materializer eagerMaterializer)
- Overrides:
createLogicAndMaterializedValue
in classGraphStageWithMaterializedValue<SourceShape<T>,ActorRef>
-
-