object StreamRefs

Factories for creating stream refs.

Source
StreamRefs.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StreamRefs
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def sinkRef[T](): Source[T, SinkRef[T]]

    A local Sink 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 in the spot of the local Sink directly.

    A local Sink 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 in the spot of the local Sink directly.

    Adheres to StreamRefAttributes.

    See more detailed documentation on SinkRef.

  2. def sourceRef[T](): Sink[T, SourceRef[T]]

    A local Sink 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 in the spot of the local Sink directly.

    A local Sink 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 in the spot of the local Sink directly.

    Adheres to StreamRefAttributes.

    See more detailed documentation on SourceRef.