Package akka.stream.javadsl
Class StreamRefs$
- java.lang.Object
-
- akka.stream.javadsl.StreamRefs$
-
public class StreamRefs$ extends java.lang.Object
Factories for creating stream refs.
-
-
Field Summary
Fields Modifier and Type Field Description static StreamRefs$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description StreamRefs$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Source<T,SinkRef<T>>
sinkRef()
A localSink
which materializes aSourceRef
which can be used by other streams (including remote ones), to consume data from this local stream, as if they were attached in the spot of the local Sink directly.<T> Sink<T,SourceRef<T>>
sourceRef()
A localSink
which materializes aSourceRef
which can be used by other streams (including remote ones), to consume data from this local stream, as if they were attached in the spot of the local Sink directly.
-
-
-
Field Detail
-
MODULE$
public static final StreamRefs$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
sourceRef
public <T> Sink<T,SourceRef<T>> sourceRef()
A localSink
which materializes aSourceRef
which can be used by other streams (including remote ones), to consume data from this local stream, as if they were attached in the spot of the local Sink directly.Adheres to
StreamRefAttributes
.See more detailed documentation on
SourceRef
.
-
sinkRef
public <T> Source<T,SinkRef<T>> sinkRef()
A localSink
which materializes aSourceRef
which can be used by other streams (including remote ones), to consume data from this local stream, as if they were attached in the spot of the local Sink directly.Adheres to
StreamRefAttributes
.See more detailed documentation on
SinkRef
.
-
-