# ControlEventKind

`import { ControlEventKind } from "destack:runtime";`

Runtime control event kind.

```ds title="ControlEventKind"
export enum ControlEventKind {
    Paused = 1,
    Resumed = 2,
    Stepped = 3,
    Breakpoint = 4,
}
```

[language/library/src/runtime/control.ds:7:16](https://github.com/destack-sh/destack/blob/main/language/library/src/runtime/control.ds#L7-L16)

## Variants

### `Paused = 1`

The runtime paused execution.

### `Resumed = 2`

The runtime resumed execution.

### `Stepped = 3`

The runtime completed one step.

### `Breakpoint = 4`

The runtime reached a breakpoint.
