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
In all (Default) ReactiveXxxOperation interfaces used by ReactiveRedisTemplate, the (Redis) operation methods refer to their corresponding command interface as "connection" when passing the FunctionLambda to the createMono(:Function<..>, Publisher<T>) or createFlux(:Function<..>, Publisher<T>) methods, which is not technically accurate, and confusing.
The FunctionLambda expects an instance of reactive commands (e.g. ReactiveSetCommands in the (Default) ReactiveSetOperations interface), which is obtained from the ReactiveRedisConnection.
The text was updated successfully, but these errors were encountered:
jxblum
changed the title
Rename Lambda Function parameter to match command interface in ReactiveXxxOperations
Rename Function Lambda parameter to match command interface in (Default) ReactiveXxxOperations
Aug 3, 2023
In all (Default)
ReactiveXxxOperation
interfaces used byReactiveRedisTemplate
, the (Redis) operation methods refer to their corresponding command interface as "connection
" when passing theFunction
Lambda to thecreateMono(:Function<..>, Publisher<T>)
orcreateFlux(:Function<..>, Publisher<T>)
methods, which is not technically accurate, and confusing.The
Function
Lambda expects an instance of reactive commands (e.g.ReactiveSetCommands
in the (Default)ReactiveSetOperations
interface), which is obtained from theReactiveRedisConnection
.The text was updated successfully, but these errors were encountered: