Hello!
Is there a way to make JavaDelegate.execute() method asynchronous? We have a custom HTTP call inside it and it seems to me that under heavy pressure of processes all Flowable threads become busy because of waiting for HTTP responses. And this behavior slows down Flowable performance.
No, we do not want to use HttpTask because we have custom logic.
Maybe I am doing the wrong thing and the best solution is to increase the number of task execution threads (how to do this - found answer: spring.task.execution.pool.coreSize)?
Thank you!