Questions tagged [spring-rsocket]

Spring support for RSocket Java

Spring support for RSocket Java.

34 questions
0
votes
2 answers

rSocket websocket postman testing mime types and endpoints

I am using spring-boot-starter-webflux and spring-boot-starter-rsocket version 2.7.1 The rSocket transport is set to websocket like this: spring.rsocket.server.transport=websocket spring.rsocket.server.mapping-path=/rsocket # this setting has no…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
1 answer

Multiple producers for one consumer or request

I can see that I can route one request to a responder and that there's different implementations like fireAndForget and all that but I have a case where producers are responsible for their subset of data. Specifically, the producers are actually…
0
votes
1 answer

How do you add reactive interceptors to Spring Boot annotated controllers?

I've set up rsocket metrics using rsocket-micrometer on the CLIENT side, by configuring the RSocketConnector with interceptors, like this (Kotlin): rSocketReqesterBuilder.rsocketConnector { configureConnector(it) } // ... private fun…
Eric J Turley
  • 350
  • 1
  • 5
  • 20
-1
votes
1 answer

Flutter RSocket client not connecting to RSocket API created using Spring Boot

I'm playing with RSocket in Flutter. I've created two RSocket apis like below: @MessageMapping("stream") Flux numbers(){ return Flux.interval(Duration.ofSeconds(1)); } @MessageMapping("echo") Mono
Mahdi Amini
  • 402
  • 1
  • 3
  • 17
1 2
3