Suspension

inner class Suspension(name: String? = null, val type: SuspendType = SuspendType.SUSPEND) : IdentityIfc

An abstraction that represents a general suspension point within a process. Suspensions are one-shot. That is, once resumed they cannot be used again unless passed through the suspend(suspension: Suspension) function for a KSLProcess.

To be useful, a suspension must be used as an argument of the suspend(suspension: Suspension) function for a KSLProcess. The main purpose of this class is to better facilitate process interaction coordination between entities that must suspend and resume each other to try to make the interaction less error-prone.

Parameters

name

the name of the suspension. Useful for debugging and tracking of suspensions. Defaults to null. If null, a useful name is created based on its identity.

type

the type of suspension. By default, this is the general type, SuspendType.SUSPEND.

Constructors

Link copied to clipboard
constructor(name: String? = null, type: SuspendType = SuspendType.SUSPEND)

Properties

Link copied to clipboard
open override val id: Int
Link copied to clipboard

A suspension is once only. Once done it cannot be reused. This flag indicates if the suspension has occurred and been resumed. True means that the resumption has occurred. False means that the resumption has not yet occurred. This flag is set to false internally by the suspend(suspension: Suspension) function when the suspension is used. Once the suspension has been resumed, this property remains true, unless the suspension is passed again through the suspend(suspension: Suspension) function

Link copied to clipboard

True indicates that the suspension is suspending for the associated entity.

Link copied to clipboard
open override var label: String?
Link copied to clipboard
open override val name: String
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String