mirror of https://github.com/zulip/zulip.git
19 lines
693 B
Python
19 lines
693 B
Python
|
|
from typing import Any, Dict, Optional
|
|
|
|
if False:
|
|
from zerver.tornado.event_queue import ClientDescriptor
|
|
|
|
descriptors_by_handler_id = {} # type: Dict[int, ClientDescriptor]
|
|
|
|
def get_descriptor_by_handler_id(handler_id: int) -> Optional['ClientDescriptor']:
|
|
return descriptors_by_handler_id.get(handler_id)
|
|
|
|
def set_descriptor_by_handler_id(handler_id: int,
|
|
client_descriptor: 'ClientDescriptor') -> None:
|
|
descriptors_by_handler_id[handler_id] = client_descriptor
|
|
|
|
def clear_descriptor_by_handler_id(handler_id: int,
|
|
client_descriptor: 'ClientDescriptor') -> None:
|
|
del descriptors_by_handler_id[handler_id]
|