mirror of
				https://github.com/django/daphne.git
				synced 2025-10-31 15:57:25 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			288 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			288 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({
 | |
|         "text": message['text'],
 | |
|     })
 |