Getting Started With RSocket: Spring Boot Fire-And-Forget
Time: about 15 minutes.
Some developers reading this post will have been using HTTP for many years by now. Most of them will also know that if you want to use HTTP with other messaging models — like fire-and-forget, for example — you must sometimes use clever workarounds like this one posted on Stackoverflow. That's because HTTP is a request-response protocol. It requires a request to be sent and a response to be received. It has no concept of a one-way message without any form of response.
RSocket takes a different approach. RSocket defines a new protocol layer on top of transports like TCP…