Questions tagged [rsocket-js]

JavaScript implementation of the RSocket protocol intended for use in browsers and/or Node.js.

A JavaScript implementation of the RSocket protocol intended for use in browsers and/or Node.js. From rsocket.io:

[RSocket] is an application protocol providing Reactive Streams semantics over an asynchronous, binary boundary.

It enables the following symmetric interaction models via async message passing over a single connection:

    request/response (stream of 1)
    request/stream (finite stream of many)
    fire-and-forget (no response)
    event subscription (infinite stream of many)
    channel (bi-directional streams)
18 questions
0
votes
1 answer

RSocket error 0x201 (APPLICATION_ERROR): empty String

I have an Roscket connection from the browser(in an create-react-app ecosystem) to a spring netty server, connection is working but after some time I am getting the following error on the client side(rsocket js 0.0.27) RSocket error 0x201…
Roie Beck
  • 1,113
  • 3
  • 15
  • 30
0
votes
1 answer

FlowableProcessor rsocket-js typescript

I'm trying to built a chat frontend with rsocket-websocket-client. I'm able to send message from frontend using requestChannel(new Flowable(source...)) and receive message using requestChannel(new Flowable.just({metatdata})). I was trying to use…
0case
  • 443
  • 7
  • 13
-1
votes
1 answer

Socket notifications

I have a screen that receives notifications from the Spring Boot backend, and I show them in a bell. When deleting a notification it deletes it well, but when another new notification arrives it loads the ones that I had already deleted. import…
dany952
  • 191
  • 3
  • 9
1
2