com.twitter.concurrent

Spool

object Spool

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Spool
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class Cons[A](head: A, tail: Future[Spool[A]]) extends Spool[A] with Product with Serializable

  2. class Syntax[A] extends AnyRef

    Syntax support.

    Syntax support. We retain different constructors for future resolving vs. not.

    *:: constructs and deconstructs deferred tails **:: constructs and deconstructs eager tails

  3. class Syntax1[A] extends AnyRef

  4. class ToSpool[A] extends AnyRef

    Adds an implicit method to efficiently convert a Seq[A] to a Spool[A]

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. object **::

  4. object *::

  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. object Empty extends Spool[Nothing]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def empty[A]: Spool[A]

    The empty spool.

  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. implicit def seqToSpool[A](s: Seq[A]): ToSpool[A]

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. implicit def syntax[A](s: ⇒ Future[Spool[A]]): Syntax[A]

  22. implicit def syntax1[A](s: Spool[A]): Syntax1[A]

  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def cons[A](value: A, nextSpool: Spool[A]): Spool[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 6.14.1) Use *:: instead: the ABI for this method will be changing.

  2. def cons[A](value: A, next: Future[Spool[A]]): Spool[A]

    Cons a value & tail to a new {{Spool}}.

    Cons a value & tail to a new {{Spool}}. To defer the tail of the Spool, use the {{*::}} operator instead.

    Annotations
    @deprecated
    Deprecated

    (Since version 6.14.1) Use *:: instead: the ABI for this method will be changing.

Inherited from AnyRef

Inherited from Any

Ungrouped