Artem Bilan
Artem Bilan
@dependabot reopen
I'm sorry it is not fully clear what you mean. Would you mind to share with us much more info how that supposed to look from end-user perspective? The regular...
This is probably your SO question: https://stackoverflow.com/questions/76315192/redislockregistry-with-webflux-and-kotlin
OK. So, I see there is a nice `Mutex` abstraction for lock in Kotlin Coroutines: https://kotlinlang.org/docs/shared-mutable-state-and-concurrency.html#mutual-exclusion. I guess it is now just a matter of a proper impl of this...
Right. That’s why I’m asking: give me a sample how end-user API suppose to look like. Or even better: take an opportunity and contribute this feature!
How so? I see there this one: https://github.com/chenggangpro/reactive-lock/blob/main/src/main/java/pro/chenggang/project/reactive/lock/core/redis/RedisReactiveLockRegistry.java. Therefore they do support already something what you'd like. Only what we (they?) need is really your request for R2DBC. Probably you...
The SpEL function is essentially a static method invocation: https://docs.spring.io/spring-framework/reference/core/expressions/language-ref/functions.html. It is better to avoid a scan overhead for those methods and stick with plain `SpelFunctionFactoryBean` configuration.
Having this a very old issue and modern tendency to move away from XML configuration, plus complexity of the possible solution, I treating this as `Won't Fix`.
DefaultPollableMessageSource should execute `postSend` and `afterSendCompletion` interceptor methods
I'm not sure that `send` part is correct here at all. We talk about a `MessageSource` which has only a `receive` operation. So, it looks like better to rework the...
DefaultPollableMessageSource should execute `postSend` and `afterSendCompletion` interceptor methods
> When a ChannelInterceptor is added to a MessageChannel, the methods "preSend", etc, are called. Sure! But that is for a `MessageChannel`. Here we deal with a `PollableMessageSource` which really...