rsocket-java
rsocket-java copied to clipboard
Java implementation of RSocket
Signed-off-by: sullis upgrade to setup-java v4 ### Motivation: setup-java v1 is obsolete ### Modifications: modified all GitHub Actions workflows ### Result: setup-java v4 executes in all workflows
I have a case where I'm attempting to dispose a connection via an RSocketRequester using the .dispose() method given a particular condition. In version 1.1.3 this worked no problem. However,...
Signed-off-by: sullis enable Netty leak detector in test suite ### Motivation: early detection of Netty resource leaks ### Modifications: modified test suite only ### Result: tests pass
## Expected Behavior The subscription is created and everthing is working like expected all the time. ## Actual Behavior Sometimes a subscription is not created and the related code just...
Based on the rsocket-java 1.1.3 version, the implementation of the LoadbalanceRSocketClient was tested. It was observed that after a service node went down, the client's load balancer successfully removed the...
Configured Resume prevents closing of connection on RejectedSetupException (Regression 1.1.3->1.1.5)
This is basically a followup from https://github.com/rsocket/rsocket-java/issues/1092#issue-1750095963 RSocket 1.1.5 *did* fix the premature closing of the TCP connection when server responds to `SETUP` message with a `RejectedSetupException`. Unfortunately, the authentication...
I want to use the Resume functionality on a load-balanced server. ## Motivation I can use a persistent ResumableFramesStore by configuring a store with the RSocketServerCustomizer. However, I cannot provide...
I created a simple client and server spring boot application with rsocket and simple resume enabled. Every time the client tries to dispose, I get the error message: “Failed to...