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

https://github.com/temporalio/sdk-java/pull/37

feature

https://github.com/temporalio/sdk-java/pull/37

feature

https://github.com/temporalio/sdk-java/pull/172

feature

https://github.com/temporalio/sdk-java/pull/69 https://github.com/temporalio/sdk-java/pull/73

feature

https://github.com/temporalio/sdk-java/pull/61

feature

Hello team! I've noticed that graphs of next metrics on Activity shows are almost same value in case of Activity attempt failure: - cadence-activity-execution-failed - cadence-activity-task-failed I propose to rethink...

enhancement

It seems `WorkflowReplayer.replayWorkflowExecutionFromResource` cannot detect non-deterministic change for the last decision. Repro workflow: ``` public static class TestGetVersionAddedImpl implements TestWorkflow1 { @Override public String execute(String taskList) { Workflow.sleep(10); // This...

bug

I am implementing a Parent Workflow **P1** and inside that I am implementing child workflows **C!1,C2,C3,C4**. The child workflows are implemented sequentially. Logic : P1 -> Called C1 -> Called...

Hi, I noticed that context propagation was added for Workflow and Activity - https://github.com/uber/cadence-java-client/pull/428 While missing it for LocalActivity, Signal, Query.