State of a layer that's paused because it is waiting for a command reply.
| 33 | |
| 34 | |
| 35 | class Paused(NamedTuple): |
| 36 | """ |
| 37 | State of a layer that's paused because it is waiting for a command reply. |
| 38 | """ |
| 39 | |
| 40 | command: commands.Command |
| 41 | generator: CommandGenerator |
| 42 | |
| 43 | |
| 44 | class Layer: |
no outgoing calls
no test coverage detected
searching dependent graphs…