deepstreamIO / deepstream.io

deepstream.io server
https://deepstreamio.github.io
MIT License
7.13k stars 382 forks source link

RPC requests protocol #1123

Closed sancelot closed 1 year ago

sancelot commented 1 year ago

it is not really clear to me, which protocol rpc are used in order to establish connection with other servers

Are you supporting json rpc requests ?

jaime-ez commented 1 year ago

Hi, deepstream uses a custom protocol in order to build and parse messages. Messages will determine weather you are modifying a record, sending an event, an rpc request etc. Protocol messages can use different connection endpoints: a websocket connection, mqtt or http. You can send any serializable object as payload on an rpc message (text, json, etc)

Hope this helps, feel free to ask more questions, cheers

jaime-ez commented 1 year ago

closing, feel free to ask more questions if you have