com.twitter.util

Activity

object Activity extends Serializable

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

Type Members

  1. case class Failed(exc: Throwable) extends State[Nothing] with Product with Serializable

    The activity has failed, with exception exc.

  2. case class Ok[T](t: T) extends State[T] with Product with Serializable

    The activity is running with a current value of t.

  3. sealed trait State[+T] extends AnyRef

    An ADT describing the state of an Activity.

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. object Pending extends State[Nothing]

    The activity is pending output.

  5. def apply[T](): (Activity[T], Witness[Try[T]])

    Create a new pending activity.

    Create a new pending activity. The activity's state is updated by the given witness.

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def collect[T](activities: <error>): Activity[<error>]

    [use case] Collect a collection of activities into an activity of a collection of values.

    [use case]

    Collect a collection of activities into an activity of a collection of values.

    Full Signature

    def collect[T, CC[X] <: Traversable[X]](acts: CC[Activity[T]])(implicit newBuilder: CanBuild[T, CC[T]], cm: ClassManifest[T]): Activity[CC[T]]

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

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

    Definition Classes
    AnyRef → Any
  11. def exception(exc: Throwable): Activity[Nothing]

    Create a new static activity with exception exc.

  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. val pending: Activity[Nothing]

    A static Activity that is pending.

  20. def sample[T](act: Activity[T]): T

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

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. def value[T](v: T): Activity[T]

    Create a new static activity with value v.

  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( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped