On 2013-10-21 14:19:56 +0000, James Pike said:

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!

You need to send a message to the other thread to pass along. I am
doing something similar:

https://github.com/schancel/gameserver