We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
server.port=8080 spring.rsocket.server.port=8081 spring.rsocket.server.transport=tcp
@MessageMapping("feedMarketData") public Flux<MarketData> feedMarketData(MarketDataRequest marketDataRequest) { return marketDataRepository.getAll(marketDataRequest.getStock()); }
I Would like to make a .NET request routing to feedMarketData
Thanks for your help !
The text was updated successfully, but these errors were encountered:
Hi @broadside74!
As of now, this feature is not yet supported in the dotnet implementation. However, you may encode Payload metadata following the specified layout defined here -> https://github.com/rsocket/rsocket/blob/master/Extensions/CompositeMetadata.md
Sorry, something went wrong.
No branches or pull requests
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
server.port=8080
spring.rsocket.server.port=8081
spring.rsocket.server.transport=tcp
I Would like to make a .NET request routing to feedMarketData
Thanks for your help !
The text was updated successfully, but these errors were encountered: