SurgicalProcessState

@Serializable
sealed class SurgicalProcessState

The state of the SurgicalProcess. Each state is in a currentStep that must be supported.

Inheritors

Types

Link copied to clipboard
@Serializable
class Interrupted : SurgicalProcessState

Interrupted state. The surgery is interrupted

Link copied to clipboard
@Serializable
data class PostSurgery(step: SurgicalProcessStep) : SurgicalProcessState

Post-surgery state with the currentStep.

Link copied to clipboard
@Serializable
data class PreSurgery(step: SurgicalProcessStep) : SurgicalProcessState

Pre-surgery state with the currentStep.

Link copied to clipboard
@Serializable
data class Surgery(step: SurgicalProcessStep) : SurgicalProcessState

Surgery state with the currentStep.

Link copied to clipboard
@Serializable
class Terminated : SurgicalProcessState

Terminated state. The surgery is terminated.

Properties

Link copied to clipboard