RSocket
RSocket is an application protocol initially developed by, that supports Reactive Streams. The motivation behind its development was to replace HTTP, which is inefficient for many tasks such as microservices communication, with a protocol that has less overhead.
Protocol
RSocket is a binary protocol for use on byte stream transports such as TCP and WebSocket. It enables the following symmetric interaction models via async message passing over a single connection:- request/response
- request/stream
- fire-and-forget
- channel