mirror of
				https://github.com/django/daphne.git
				synced 2025-10-30 23:37:25 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from channels.sessions import enforce_ordering
 | |
| 
 | |
| 
 | |
| #@enforce_ordering(slight=True)
 | |
| def ws_connect(message):
 | |
|     pass
 | |
| 
 | |
| 
 | |
| #@enforce_ordering(slight=True)
 | |
| def ws_message(message):
 | |
|     "Echoes messages back to the client"
 | |
|     message.reply_channel.send(message.content)
 |