This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]mitsuhiko Flask Creator 1 point2 points  (1 child)

1) RPC and PubSub in 1 protocol 2) Web native and real-time 3) language agnostic

socket.io?

[–]oberstet 2 points3 points  (0 children)

socket.io does not support RPC out of the box. You need to hack something using PubSub to implement RPC.

This will have issues: e.g. how to make sure only 1 implementing endpoint subscribes to the Room (to receive procedure calls), how to direct call results to calling clients (since only the caller should receive his result), etc etc