A state update sent to the frontend.
| 1448 | |
| 1449 | |
| 1450 | class StateUpdate(Base): |
| 1451 | """A state update sent to the frontend.""" |
| 1452 | |
| 1453 | # The state delta. |
| 1454 | delta: Delta = {} |
| 1455 | |
| 1456 | # Events to be added to the event queue. |
| 1457 | events: List[Event] = [] |
| 1458 | |
| 1459 | # Whether this is the final state update for the event. |
| 1460 | final: bool = True |
| 1461 | |
| 1462 | |
| 1463 | class StateManager(Base, ABC): |
no outgoing calls