object AsyncStream

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

Type Members

  1. implicit class Ops[A] extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[A](as: A*): AsyncStream[A]

    Var-arg constructor for AsyncStreams.

    Var-arg constructor for AsyncStreams.

    AsyncStream(1,2,3)
    Annotations
    @varargs()
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def empty[A]: AsyncStream[A]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def exception[A](e: Throwable): AsyncStream[A]

    A failed AsyncStream

  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. def flattens[A](as: AsyncStream[AsyncStream[A]]): AsyncStream[A]

    Java friendly AsyncStream.flatten.

  13. def fromFuture[A](f: Future[A]): AsyncStream[A]

    Transformation (or lift) from com.twitter.util.Future into AsyncStream.

  14. def fromOption[A](o: Option[A]): AsyncStream[A]

    Transformation (or lift) from Option into AsyncStream.

  15. def fromSeq[A](seq: Seq[A]): AsyncStream[A]

    Transformation (or lift) from Seq into AsyncStream.

  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def merge[A](s: AsyncStream[A]*): AsyncStream[A]

    Combinator, merges multiple AsyncStreams into a single stream.

    Combinator, merges multiple AsyncStreams into a single stream. The resulting stream contains elements in FIFO order per input stream but order between streams is not guaranteed. The resulting stream is completed when all input streams are completed. The stream is failed when any input stream is failed

    Annotations
    @varargs()
  20. def mk[A](a: A, tail: => AsyncStream[A]): AsyncStream[A]

    Like Ops.+::.

  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def of[A](a: A): AsyncStream[A]

    An AsyncStream with a single element.

  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. object Cons extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped