object AsyncStream
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AsyncStream
- AnyRef
- Any
- Hide All
- Show All
Visibility
- 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
- def apply[A](as: A*): AsyncStream[A]
Var-arg constructor for AsyncStreams.
Var-arg constructor for AsyncStreams.
AsyncStream(1,2,3)
- Annotations
- @varargs()
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def empty[A]: AsyncStream[A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def exception[A](e: Throwable): AsyncStream[A]
A failed AsyncStream
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flattens[A](as: AsyncStream[AsyncStream[A]]): AsyncStream[A]
Java friendly AsyncStream.flatten.
- def fromFuture[A](f: Future[A]): AsyncStream[A]
Transformation (or lift) from com.twitter.util.Future into
AsyncStream
. - def fromOption[A](o: Option[A]): AsyncStream[A]
Transformation (or lift) from
Option
intoAsyncStream
. - def fromSeq[A](seq: Seq[A]): AsyncStream[A]
Transformation (or lift) from
Seq
intoAsyncStream
. - final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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()
- def mk[A](a: A, tail: => AsyncStream[A]): AsyncStream[A]
Like
Ops.+::
. - final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def of[A](a: A): AsyncStream[A]
An AsyncStream with a single element.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
- object Cons extends Serializable