A command waiting in the queue
| 41 | |
| 42 | |
| 43 | class QueuedCommand(NamedTuple): |
| 44 | """A command waiting in the queue""" |
| 45 | |
| 46 | request_id: str |
| 47 | command: str |
| 48 | params: dict[str, Any] |
| 49 | timeout_ms: int |
| 50 | future: asyncio.Future[dict[str, Any]] |
| 51 | |
| 52 | |
| 53 | @dataclass |