MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / all

Method all

src/task_registry.py:91–95  ·  view source on GitHub ↗

Snapshot of every registered task. Returns a list, not a view — callers iterating outside the lock should not see in-flight writes.

(self)

Source from the content-addressed store, hash-verified

89 return self._tasks.get(task_id)
90
91 def all(self) -> list[TaskStateBase]:
92 """Snapshot of every registered task. Returns a list, not a view —
93 callers iterating outside the lock should not see in-flight writes."""
94 with self._lock:
95 return list(self._tasks.values())
96
97 def by_type(self, task_type: TaskType) -> list[TaskStateBase]:
98 """Snapshot filtered to a single TaskType — used by deprecated

Callers 12

__iter__Method · 0.95
AppClass · 0.80
entry.tsxFile · 0.80
pruneHeapdumpsFunction · 0.80
useSubmissionFunction · 0.80
sweep_onceFunction · 0.80
runMethod · 0.80
runMethod · 0.80

Calls

no outgoing calls