object Source
akka.stream.scaladsl.Source factories operating with java.util.concurrent.Flow.*
interfaces.
- Source
- JavaFlowSupport.scala
- Alphabetic
- By Inheritance
- Source
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- final def asSubscriber[T]: Source[T, Subscriber[T]]
Creates a
Source
that is materialized as a java.util.concurrent.Flow.SubscriberCreates a
Source
that is materialized as a java.util.concurrent.Flow.Subscriber- See also
See also Source.asSubscriber if wanting to integrate with org.reactivestreams.Subscriber instead (which carries the same semantics, however existed before RS's inclusion in Java 9).
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def fromPublisher[T](publisher: Publisher[T]): Source[T, NotUsed]
Helper to create Source from java.util.concurrent.Flow.Publisher.
Helper to create Source from java.util.concurrent.Flow.Publisher.
Construct a transformation starting with given publisher. The transformation steps are executed by a series of java.util.concurrent.Flow.Processor instances that mediate the flow of elements downstream and the propagation of back-pressure upstream.
- See also
See also Source.fromPublisher if wanting to integrate with org.reactivestreams.Publisher instead (which carries the same semantics, however existed before RS's inclusion in Java 9).
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])