case class Cont[+F[_], +O](stack: Vector[(Cause) ⇒ Trampoline[Process[F, O]]]) extends Product with Serializable
Continuation of the process. Represents process _stack_. Used in conjunction with Step.
- Source
- Process.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Cont
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Cont(stack: Vector[(Cause) ⇒ Trampoline[Process[F, O]]])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
-
def
+:[F2[x] >: F[x], O2 >: O](p: Process[F2, O2]): Process[F2, O2]
Prepends supplied process to this stack
- def ->[B](y: B): (Cont[F, O], B)
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
continue: Process[F, O]
Converts this stack to process, that is used when following process with normal termination.
- def ensuring(cond: (Cont[F, O]) ⇒ Boolean, msg: ⇒ Any): Cont[F, O]
- def ensuring(cond: (Cont[F, O]) ⇒ Boolean): Cont[F, O]
- def ensuring(cond: Boolean, msg: ⇒ Any): Cont[F, O]
- def ensuring(cond: Boolean): Cont[F, O]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
extend[F2[_], O2](f: (Process[F, O]) ⇒ Process[F2, O2]): Cont[F2, O2]
Applies transformation function
fto all frames of this stack. -
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
isEmpty: Boolean
Returns true, when this continuation is empty, i.e.
Returns true, when this continuation is empty, i.e. no more appends to process
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
prepend[F2[x] >: F[x], O2 >: O](p: Process[F2, O2]): Process[F2, O2]
alias for +:
- val stack: Vector[(Cause) ⇒ Trampoline[Process[F, O]]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def →[B](y: B): (Cont[F, O], B)