19 lines
546 B
Python
19 lines
546 B
Python
import threading
|
|
from collections import defaultdict
|
|
|
|
|
|
class PerAgentLockManager:
|
|
"""Manages per-agent locks."""
|
|
|
|
def __init__(self):
|
|
self.locks = defaultdict(threading.Lock)
|
|
|
|
def get_lock(self, agent_id: str) -> threading.Lock:
|
|
"""Retrieve the lock for a specific agent_id."""
|
|
return self.locks[agent_id]
|
|
|
|
def clear_lock(self, agent_id: str):
|
|
"""Optionally remove a lock if no longer needed (to prevent unbounded growth)."""
|
|
if agent_id in self.locks:
|
|
del self.locks[agent_id]
|