Object

com.thoughtworks.zerocost.continuation

Continuation

Related Doc: package continuation

Permalink

object Continuation

The companion object for Continuation.

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

Type Members

  1. final case class Suspend[R, A](continuation: () ⇒ Continuation[R, A]) extends ((A) ⇒ TailRec[R]) ⇒ TailRec[R] with Product with Serializable

    Permalink

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](start: ((A) ⇒ TailRec[R]) ⇒ TailRec[R]): Continuation[R, A]

    Permalink
    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. def liftIO[R, A](io: IO[A]): Continuation[R, A]

    Permalink
    Annotations
    @inline()
  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[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()
  20. def safeAsync[R, A](start: ((A) ⇒ TailRec[R]) ⇒ TailRec[R]): Continuation[R, A]

    Permalink

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

  21. def suspend[R, A](continuation: ⇒ Continuation[R, A]): Continuation[R, 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[R, A](continuation: Continuation[R, A]): Some[((A) ⇒ TailRec[R]) ⇒ TailRec[R]]

    Permalink

    Extracts the underlying scala.Function1 of continuation

    Extracts the underlying scala.Function1 of continuation

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

      import com.thoughtworks.zerocost.continuation.Continuation
      val Continuation(f) = Continuation.pure[Unit, Int](42)
      f should be(a[Function1[_, _]])
  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