InterruptStatus

sealed abstract class InterruptStatus(val isInterruptible: Boolean) extends Serializable with Product

The InterruptStatus of a fiber determines whether or not it can be interrupted. The status can change over time in different regions.

If a fiber is interruptible but in wind-down mode, then it cannot be interrupted no matter what. The InterruptStatus of a fiber reflects only whether it is within an interruptible or uninterruptible region, regardless of wind-down mode.

Companion:
object
trait Product
trait Equals
class Object
trait Matchable
class Any
object Interruptible.type
object Uninterruptible.type

Value members

Concrete methods

Inherited methods

def canEqual(that: Any): Boolean
Inherited from:
Equals
Inherited from:
Product
def productElement(n: Int): Any
Inherited from:
Product
Inherited from:
Product
Inherited from:
Product
Inherited from:
Product

Concrete fields