Request a `Wakeup` event after the specified amount of seconds.
| 45 | |
| 46 | |
| 47 | class RequestWakeup(Command): |
| 48 | """ |
| 49 | Request a `Wakeup` event after the specified amount of seconds. |
| 50 | """ |
| 51 | |
| 52 | delay: float |
| 53 | |
| 54 | def __init__(self, delay: float): |
| 55 | self.delay = delay |
| 56 | |
| 57 | |
| 58 | class ConnectionCommand(Command): |
no outgoing calls
searching dependent graphs…