# `Squidie.Runtime.DispatchProtocol.Entry`
[🔗](https://github.com/dark-trench/squidie/blob/main/lib/squidie/runtime/dispatch_protocol/entry.ex#L1)

One durable runtime journal entry.

Entries are intentionally shaped as append-only facts. Checkpoints and live
wakeups are derived from replaying entries; they are not the source of truth.

# `t`

```elixir
@type t() :: %Squidie.Runtime.DispatchProtocol.Entry{
  data: map(),
  occurred_at: DateTime.t(),
  thread: thread(),
  type: atom()
}
```

# `thread`

```elixir
@type thread() ::
  {:run, String.t()}
  | {:dispatch, String.t()}
  | {:run_index, String.t()}
  | {:run_catalog, String.t()}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
