# `SquidMesh.Runtime.DispatchProtocol.Entry`
[🔗](https://github.com/ccarvalho-eng/squid_mesh/blob/main/lib/squid_mesh/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() :: %SquidMesh.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()}
```

---

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