camunda-external-task-client-java
camunda-external-task-client-java copied to clipboard
This codebase was merged with https://github.com/camunda/camunda-bpm-platform. Only some maintenance branches might still be active.
# Subcription script wont work after long term running Hi,. i have a simple bpmn process running on camunda on ubuntu server.it contains two service task. i subscribe to topics...
Hi, When setting an exponential backoff strategy for the client, is there a way to distinguish between a failed connection (for exemple if the engine server is down) and an...
Dependabot couldn't find a pom.xml for this project. Dependabot requires a pom.xml to evaluate your project's current Java dependencies. It had expected to find one at the path: `/pom.xml`. If...
If an external task is canceled within the process engine, I as a client can only recognize this when I want to complete this task or extend the lock. I...
Would be nice to have input and output parameters (key,value pairs) variables get methods in org.camunda.bpm.client.task.ExternalTask, which represent tag: 1. -> ExternalTask::getInputParameters -> Map 2. ExternalTask::getOutputParameters -> Map
Is HTTPS supported as a communication protocol between the external task client and Camunda REST API? If so. how can it be configured?
Just try that: ``` public static void main(String[] args) throws InterruptedException { ExternalTaskClient client = ExternalTaskClient.create() .baseUrl("http://localhost:8080/engine-rest") .asyncResponseTimeout(1000) .build(); Thread.sleep(300_000); } ``` and observe CPU utilization. It's propably this loop:...
I have multiple instances of the engine,So what can I do to make external-task support cluster access
Hello guys, i would like to switch or/and configure the RequestExecutor to my needs. Currently, external task client is dependent on Apache http client and the configuration of it is...