# `Dagger.Engine`
[🔗](https://github.com/dagger/dagger/blob/v0.21.8/sdk/elixir/lib/dagger/gen/engine.ex#L2)

The Dagger engine configuration and state

# `t`

```elixir
@type t() :: %Dagger.Engine{client: term(), query_builder: term()}
```

# `clients`

```elixir
@spec clients(t()) :: {:ok, [String.t()]} | {:error, term()}
```

The list of connected client IDs

# `id`

```elixir
@spec id(t()) :: {:ok, String.t()} | {:error, term()}
```

A unique identifier for this Engine.

# `local_cache`

```elixir
@spec local_cache(t()) :: Dagger.EngineCache.t()
```

The local engine cache state tracked by dagql

# `name`

```elixir
@spec name(t()) :: {:ok, String.t()} | {:error, term()}
```

The name of the engine instance.

---

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