In this instance I'm running a chat-like server where users can play and chat together, so for example when one websocket receives a message, the fibre that receives the message might then go off and send that message to other web sockets.

Is it fine to do this or do I need some kinda Task Mutex around the "send" call?

Thanks!