MCPcopy Create free account
hub / github.com/dot-agent/nextpy / StateUpdate

Class StateUpdate

nextpy/backend/state.py:1450–1460  ·  view source on GitHub ↗

A state update sent to the frontend.

Source from the content-addressed store, hash-verified

1448
1449
1450class 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
1463class StateManager(Base, ABC):

Callers 9

modify_stateMethod · 0.90
processFunction · 0.90
preprocessMethod · 0.90
test_upload_fileFunction · 0.90
test_state_proxyFunction · 0.90
_as_state_updateMethod · 0.85

Calls

no outgoing calls