rsocket-dart
rsocket-dart copied to clipboard
Dart implementation of RSocket
I was trying handle message from server A Server send me message by fireAndForget Server is Spring boot Server Code: ``` @Scheduled(fixedRate = 10000) public void push() { rSocketRequester .route("api.push")...
Added callback to be notified when Websocket is closed
BugFix. Payload data is populated with metadata ### Motivation: It's a bug. Instead of assigning payload data to the `Payload.data` field, it is instead incorrectly assigned to the metadata field....
This library does not support Flutter because it uses mirrors. Please help us use it in Flutter. Also, update support for the Dart library is very lacking. Since the library...
## Please add request-channel
I try to connect with spring boot currently have the next code: @MessageMapping("my-balance") public Flux timestamps() { return Flux.interval(Duration.ofSeconds(1)) .map(sequence -> LocalTime.now().toString()); } ## Improvement Suggestion How I can connect...
#25 Fixed FrameType for RequestStream
Hello, I'm struggling to integrate WebSocketRSocketResponder class. Could you please provide an example code on how to receive response from Server for different type of calls ( like fireAndForget, requestResponse...
## Expected Behavior Should receive message stream from dart client ## Actual Behavior Received error : ``` type 'RequestFNFFrame' is not a subtype of type 'RequestStreamFrame' in type cast #0...
Currently, there is no way to receive and/or handle setup rejection errors because the error consumer of the RSocketConnector is always null ### Motivation: The `connect` function of the `RSocketConnector`...