You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Until rsocket/rsocket-java#636, RSocketFactory supported only Function<RSocket, RSocket> for client side responders, which meant they had no access to the MimeType for the connection unless they were a) anonymous (or otherwise session scoped), and b) the MimeType was passed to them.
In the latest snapshots RSocketFactory provides access to the ConnectionSetupPayload on the client side too via a BiFunction. We can now change MessageHandlerAcceptor to get the data MimeType for the connection regardless of where it's used (client or server).