Receive messages (blocks until one arrives or timeout)
bus_receiveFetch and consume pending messages for your session. Blocks until a message arrives or timeout expires, returning a JSON array (possibly empty).
Instructions
Fetch and CONSUME pending messages for your session. If none are waiting and block=true, this blocks (event-driven) until a message arrives or timeout_ms elapses. Returns a JSON array of messages (may be empty on timeout).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| me | Yes | Your own session name, e.g. "backend" | |
| block | No | Block until a message arrives (default true) | |
| timeout_ms | No | Max time to block in ms (default 60000, max 600000) |