Artem Bilan
Artem Bilan
After some team discussion we decided to reopen this issue with a decision to introduce an `encodeUrl` in the next `6.0` version, with `true` by default.
Some relevant work: https://github.com/spring-projects/spring-integration/pull/3357
I'd rather say it would be better to allow to inject any `Pool` implementation instead. Either setter or new ctor. It really might be reasonable to deprecate setters related to...
We just will need to document it properly that `SimplePool` option now has to be configured on the bean injected into the `CSF`. And with that we will have a...
Need more info on the matter, e.g. some theoretical instructions what does it mean. I don't think the `AbstractMessageChannel` is a right thing to go. An `AbstractPollableChannel` might be, because...
@cydergoth , any update on this? We have plans to move Spring Integration Kafka project to this one, so fixing this issue respectively afterwards would make sense: https://github.com/spring-projects/spring-integration-kafka/issues/304 Thank you!
Consider to make an `inputChannel` for Scatter-Gather as an `ExecutorChannel`. This way you'll shift a WebFlux work to a separate thread and it won't see that blocking any more. Kinda...
Yeah... That has crossed my mind as well. We have already a https://github.com/spring-projects/spring-integration/blob/master/spring-integration-core/src/main/java/org/springframework/integration/aggregator/FluxAggregatorMessageHandler.java, so it definitely possible to take a look into reactive scatter-gather implementation...
To make a gateway reactive or non-blocking, you need to consider to have a specific return type on the gateway method. See docs for more info: https://docs.spring.io/spring-integration/docs/5.2.3.RELEASE/reference/html/messaging-endpoints.html#async-gateway > we are...
The `IntegrationMBeanExporter` has this logic: ``` /* * https://www.oracle.com/technetwork/java/javase/tech/best-practices-jsp-136021.html * * The set of characters in a value is also limited. If special characters may * occur, it is recommended...