Memory
The Memory input reads messages from an in-memory queue that can be pre-seeded with initial messages in configuration. Mainly used for testing and development.
Configuration
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| type | string | yes | — | Constant value "memory" |
| messages | array<string> | no | — | Initial list of messages enqueued at startup |
Examples
input:
type: "memory"
messages:
- "Hello"
- "World"