object StreamRefs
- Alphabetic
- By Inheritance
- StreamRefs
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def sinkRef[T](): Source[T, SinkRef[T]]
A local which materializes a SinkRef which can be used by other streams (including remote ones), to publish data to this local stream, as if they were attached directly in place of the local Source.
A local which materializes a SinkRef which can be used by other streams (including remote ones), to publish data to this local stream, as if they were attached directly in place of the local Source.
Adheres to akka.stream.StreamRefAttributes.
See more detailed documentation on SinkRef.
- def sourceRef[T](): Sink[T, SourceRef[T]]
A local which materializes a SourceRef which can be used by other streams (including remote ones), to consume data from this local stream, as if they were attached directly in place of the local Sink.
A local which materializes a SourceRef which can be used by other streams (including remote ones), to consume data from this local stream, as if they were attached directly in place of the local Sink.
Adheres to akka.stream.StreamRefAttributes.
See more detailed documentation on SourceRef.
Factories for creating stream refs.