Artem Bilan

Results 616 comments of Artem Bilan

Thank you, @raphw , for investigation. For Oracle I heard about Advance Queuing, but looks like it can work via standard JMS protocol: https://docs.oracle.com/database/121/ADQUE/aq_intro.htm#ADQUE2440. And for that part we already...

I'm confused: you said in your previous comment that "Postgres JDBC driver only supports blocking polls", so we are in a situation to re-implement a `PollableChannel`, which is, essentially, no...

I understand what you are saying and that's why it is called "polling". Our current impl in the `QueueChannel` for external store is like this: ``` try { message =...

Sure! It really can be a custom `Queue` impl which we can inject into the `QueueChannel`. Or, as I understood from your explanation, a `SubscribableChannel` to initiate a `LISTEN` on...

At a glance looks cool! I don't think we need to mix `poll missed` and `notify` concerns in one class. I see it like this: 1. A single global `PostgresChannelMessageTableSubscriber`....

Not sure what you mean. The channel must be supplied with that `groupKey` and it is stored as is (string) into DB. This key has to be a contract of...

According to README for the project you mention: https://github.com/mwiede/jsch, it is just "drop in replacement". So, you go to your dependency management, exclude `com.jcraft:jsch` from the `spring-integration-sftp` and add `com.github.mwiede:jsch`...

Right, as I said: there is a workaround for the current version. If there is strong feeling that we need to change underlying library for our API, we can consider...

As I said before: there is a workaround which does not break the framework code and does not require a ode change on your side: you just exclude `com.jcraft:jsch` dependency...

I didn't look into an Apache MINA for SSH support, but if that what is done in Spring Cloud Config and looks like they did that instead of migrating to...