---
url: >-
  https://adk.nht.io/api/@nhtio/adk/types/type-aliases/DispatchRetrievableStoreFn.md
description: Stores a new retrievable record (LLM execution context variant).
---

# Type Alias: DispatchRetrievableStoreFn

```ts
type DispatchRetrievableStoreFn = (
  ctx: DispatchContext,
  v: Retrievable,
) => void | Promise<void>;
```

Defined in: [lib/contracts/dispatch\_context.ts:93](https://github.com/NHTIO/ADK/blob/v1.20260609.0/src/lib/contracts/dispatch_context.ts#L93)

Stores a new retrievable record (LLM execution context variant).

## Parameters

| Parameter | Type                                                  |
| --------- | ----------------------------------------------------- |
| `ctx`     | [`DispatchContext`](../interfaces/DispatchContext.md) |
| `v`       | [`Retrievable`](../../common/classes/Retrievable.md)  |

## Returns

`void` | `Promise`<`void`>
