# `Condukt.SessionStore`
[🔗](https://github.com/tuist/condukt/blob/0.16.5/lib/condukt/session_store.ex#L1)

Behaviour for persisting and restoring Condukt sessions.

Session stores receive the current session snapshot and decide how to
persist it. Condukt ships with memory and disk-backed implementations,
and callers can provide their own store modules.

# `clear`

```elixir
@callback clear(keyword()) :: :ok | {:error, term()}
```

# `load`

```elixir
@callback load(keyword()) :: {:ok, term()} | :not_found | {:error, term()}
```

# `save`

```elixir
@callback save(
  term(),
  keyword()
) :: :ok | {:error, term()}
```

# `clear`

# `load`

# `save`

---

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