cadence-java-client icon indicating copy to clipboard operation
cadence-java-client copied to clipboard

Java framework for Cadence Workflow Service

Results 143 cadence-java-client issues
Sort by recently updated
recently updated
newest added

In the java client workers do not take the configuration given in the throttling methods. We are passing 0.1 in the workerOptions but doesn't have any effect. There are a...

I tried to run the hello example at https://cadenceworkflow.io/docs/06_javaclient/01_quick_start However, I got the error when starting the workflow ``` 20:48:54.846 [Workflow Executor taskList="HelloWorldTaskList", domain="test-domain": 1] ERROR c.u.c.internal.worker.PollerOptions - uncaught exception...

Is it any way possible to set your own unique Id for Workflow Id and Activity Id.

I have the following ActivityMethod: ```java void logProcessStart(ProcessIdentifiers pids, ProcessStep processStep, T startMessage, String endpoint); ``` I will call this ActivityMethod from a Workflow with an instance of the following...

Hi Is it possible to send ZonedDateTime type to WorkflowMethod? Right now workflow: ``` public interface HelloWorld { @WorkflowMethod void sayHello(String name, java.time.ZonedDateTime at); } ``` breaks down with error...

Passing a distinct PollExecutionTask to each PollLoopTask means that you have pollThreadCount Semaphores with pollThreadCount permits each guarding pollTask.poll(). If the point of the semaphore is to guard against task...

Similar to the recent changes for start

Hi everyone, i would need help with a problem, in my team we try to cancel a WF, using RequestCancelWorkflowExecutionRequest of cadence-client, but we must add info about the cancellation,...

enhancement
up-for-grabs