Artem Bilan

Results 616 comments of Artem Bilan

The `CountDownLatch` is here just for unit test purpose. Since we don't know what is your real code, your assumption about some specific implementation is not justified. Here is a...

It is still weekend over here in East cost of USA. I’ll come back to you tomorrow in my Monday’s morning.

The logic there in the `InterProcessMutex` is like this: ``` public void release() throws Exception { /* Note on concurrency: a given lockData instance can be only acted on by...

The `InterProcessMutex` comes from `org.apache.curator:curator-recipes` dependency. And that is really not how this `exclusive access` pattern works in Java primitives with lock. Only the owner of the lock can unlock...

Closed as `Works as Designed`.

The goal of the issue is not fully clear, but according to the changes related to this one, the `DestinationResolver` is now a part of `IntegrationObjectSupport` which affects not only...

There is no need need in overriding that property. The logic is like this: ``` protected MessageGroupFactory getMessageGroupFactory() { if (this.lazyLoadMessageGroups) { return this.persistentMessageGroupFactory; } else { return super.getMessageGroupFactory(); }...

Then I suggest to look into two separate instances of `MessageGroupStore`: one is configured for persistent factory and another for non-persistent one. They both can look into the same database....

No, that functionality is not supported yet: https://github.com/spring-projects/spring-integration/issues/3407. Only the solution available right now is a direct implementation of custom `source` application which would rely on the `FtpOutboundGateway` and its...