Object

com.thoughtworks.zerocost.task

Task

Related Doc: package task

Permalink

object Task

Source
task.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Task
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply[A](tryT: TryT[UnitContinuation, A]): Task[A]

    Permalink

    Creates a Task from the raw com.thoughtworks.zerocost.tryt.TryT

    Annotations
    @inline()
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def async[A](start: ((Try[A]) ⇒ Unit) ⇒ Unit): Task[A]

    Permalink

    Returns a Task of an asynchronous operation.

    Returns a Task of an asynchronous operation.

    See also

    safeAsync in case of StackOverflowError.

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def delay[A](a: ⇒ A): Task[A]

    Permalink

    Returns a Task of a blocking operation

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def execute[A](a: ⇒ A)(implicit executionContext: ExecutionContext): Task[A]

    Permalink

    Returns a Task of a blocking operation that will run on executionContext.

  12. def finalize(): Unit

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  19. def pure[A](a: A): Task[A]

    Permalink

    Returns a Task whose value is always a.

    Returns a Task whose value is always a.

    Annotations
    @inline()
  20. def safeAsync[A](run: ((Try[A]) ⇒ TailRec[Unit]) ⇒ TailRec[Unit]): Task[A]

    Permalink

    Returns a Task of an asynchronous operation like async except this method is stack-safe.

  21. def suspend[A](future: ⇒ Task[A]): Task[A]

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

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. def unapply[A](future: Task[A]): Some[TryT[UnitContinuation, A]]

    Permalink

    Extracts the underlying com.thoughtworks.zerocost.tryt.TryT of future

    Extracts the underlying com.thoughtworks.zerocost.tryt.TryT of future

    Annotations
    @inline()
    Example:
    1. This unapply can be used in pattern matching expression.

      import com.thoughtworks.zerocost.task.Task
      import com.thoughtworks.zerocost.continuation.UnitContinuation
      val Task(tryT) = Task.pure[Int](42)
      tryT should be(a[com.thoughtworks.zerocost.tryt.TryT[UnitContinuation, _]])
  25. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped