mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			687 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			687 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from typing import 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]
 |