In Haste, is it possible to call into client side code with RPC from the server just like it is possible to call into the server side code from the client side? E.g. to broadcast a message that someone has entered in a chatroom to all participants.
In here I see a similar example is implemented, the way I understand it — with a technique similar to long polling; the client requests, and the server blocks sending a response until it has some to send; then the client requests again and so on.
But is it not possible to simply send something out without the client requesting it?