rsocket-net icon indicating copy to clipboard operation
rsocket-net copied to clipboard

.NET implementation of RSocket

Results 20 rsocket-net issues
Sort by recently updated
recently updated
newest added

Hi everyone, I have a Spring Boot RSocket server and I am unable to connect to it with your example. I got a rejected Setup : 0000 Error {000}: [00000003]...

The logging on every call takes a lot of time. Doing 10,000 request responses of static text "OK" takes 1.8426/ms per request which is abysmal for a 2 byte package....

enhancement

Source Link intro: https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/sourcelink

enhancement

Hello :) I would like to know how to route to a specific message mapping using routes. I have a spring boot server using RSocket over tcp and this code...

Currently in the RSocket Library we don't have a mechanism to handle errors coming from server. I also observed that the observer is not being removed from the Dispatcher map...

enhancement

During the RSocketClient initialisation, I have defined the Responder as Follows: public async ValueTask RequestReponseListner((ReadOnlySequence data, ReadOnlySequence metadata) value) What i observe is that, the data gets truncated beyond ~1800...

bug

On setting up the RSocket connection with options ( 10 seconds KeepAlive and 180 seconds LifeTime) the connection is getting closed on the .NET client side as server is not...

The SocketTransport is configured as a 'client' socket with no specific bind and / or listen so although it exists it doesn't appear possible to actually connect to anything. Is...

https://github.com/rsocket/rsocket-net/blob/1960d653226e4ea6c0d2fcbc9aa8cda284837b63/RSocket.Core/RSocketProtocol.Handler.cs#L28-L42 Doesn't properly handle the exit condition and could result in an infinite loop if partial data is sent and the read is completed. See https://github.com/davidfowl/DocsStaging/blob/master/Pipelines.md#code-samples for more information.

Hello, I'm having difficulty to figure out the project as its lacking more sample on connecting client to remote server. For instance, .net client that will connect to java server....