MCPcopy Create free account
hub / github.com/MaterializeInc/demos / Update

Class Update

connection-examples/python/state.py:6–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4T = TypeVar('T')
5
6class Update:
7 def __init__(self, value: T, diff: int):
8 self.value = value
9 self.diff = diff
10
11class State:
12 def __init__(self, collect_history: bool = False):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected