-
Notifications
You must be signed in to change notification settings - Fork 38.9k
Closed
Labels
in: messagingIssues in messaging modules (jms, messaging)Issues in messaging modules (jms, messaging)type: enhancementA general enhancementA general enhancement
Milestone
Description
Affects: Spring Framework 5.2.0-M3
It would be nice to have Kotlin extension functions for RSocketRequester.ResponseSpec so that one could write in Kotlin style, e.g.:
requester.route("find-by-id")
.data(CustomerIdRequest(id))
.retrieveMono<Customer>()
instead of
requester.route("find-by-id")
.data(CustomerIdRequest(id))
.retrieveMono(Customer::class.java)
In the same way it would be nice to have .retrieveFlux<T>()
Metadata
Metadata
Assignees
Labels
in: messagingIssues in messaging modules (jms, messaging)Issues in messaging modules (jms, messaging)type: enhancementA general enhancementA general enhancement