Object

com.thoughtworks.continuation

Continuation

Related Doc: package continuation

Permalink

object Continuation

The companion object for Continuation.

Source
continuation.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Continuation
  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[R, A](contT: ContT[Trampoline, R, _ <: A]): Continuation[R, A]

    Permalink

    Creates a Continuation from the raw scalaz.ContT

    Creates a Continuation from the raw scalaz.ContT

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

    Permalink
    Definition Classes
    Any
  6. def async[R, A](start: ((A) ⇒ R) ⇒ R): Continuation[R, A]

    Permalink

    Returns a Continuation of an asynchronous operation.

    Returns a Continuation 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[R, A](block: ⇒ A): Continuation[R, A]

    Permalink

    Returns a Continuation of a blocking operation

    Returns a Continuation of a blocking operation

    Annotations
    @inline()
  9. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  18. def now[R, A](a: A): Continuation[R, A]

    Permalink

    Returns a Continuation whose value is always a.

    Returns a Continuation whose value is always a.

    Annotations
    @inline()
  19. def safeAsync[R, A](start: ((A) ⇒ Trampoline[R]) ⇒ Trampoline[R]): Continuation[R, A]

    Permalink

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. def unapply[R, A](continuation: Continuation[R, A]): Some[ContT[Trampoline, R, _ <: A]]

    Permalink

    Extracts the underlying scalaz.ContT of continuation

    Extracts the underlying scalaz.ContT of continuation

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

      import com.thoughtworks.continuation.Continuation
      val Continuation(contT) = Continuation.now[Unit, Int](42)
      contT should be(a[scalaz.ContT[scalaz.Free.Trampoline, _, _]])
  23. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped