top | item 27079759

(no title)

tegeek | 4 years ago

So at high level its Pub/Sub and RPC combined together in a single framework.

From a developer perspective, you can create a "channel" and then start transmitting messages on that channel. Then someone else can subscribe and can listen to that channel.

In the same way, someone can "expose" a single method. And you as a developer can call that method from anywhere.

The medium of communication is WebSockets. The protocols it uses is WAMP.

Which means any programming language can implement this (on top of WebSockets) and can take advantage of "distributed application architecture".

discuss

order

kitd|4 years ago

Thank you!