temporal-clojure-sdk icon indicating copy to clipboard operation
temporal-clojure-sdk copied to clipboard

A Temporal SDK for Clojure

Results 8 temporal-clojure-sdk issues
Sort by recently updated
recently updated
newest added

## Add the implementation for Child Workflows to the Temporal Clojure SDK ### Why? Child Workflows are a key feature in separating out Workflow execution histories and physically preventing two...

Hi, and thanks so much for sharing this SDK! I'm evaluating Temporal to help with orchestration within a polyglot Clojure + Python system, so I'm particularly considering interop between different...

Hey, thanks for writing this! Got a simple cron job working nicely and I'm impressed with the API's elegance. One thing I like about temporal is the ecosystem includes a...

Following the deprecation of the current method: https://www.javadoc.io/doc/io.temporal/temporal-sdk/latest/io/temporal/client/WorkflowOptions.Builder.html#setSearchAttributes(java.util.Map) Please also add support for child workflows (`w/invoke`) as well: https://www.javadoc.io/doc/io.temporal/temporal-sdk/latest/io/temporal/workflow/ChildWorkflowOptions.Builder.html#setSearchAttributes(java.util.Map)

Using https://javadoc.io/doc/io.temporal/temporal-testing/latest/io/temporal/testing/TestActivityEnvironment.html This has less overhead compared to worfklow test environment as no extra worker threads need to be allocated.

See https://github.com/temporalio/sdk-java/pull/1897

Right now the handler fns are dereferenced when the worker is started. It would be provide a less worker-restart-heavy development workflow if these vars would be deref'd at the last...

The [cljdoc](https://cljdoc.org/d/io.github.manetu/temporal-sdk/1.3.0/doc/readme) API import seems to have been [failing](https://app.circleci.com/jobs/github/cljdoc/builder/76809) since 1.3.0 because of a protobuf version mismatch. This PR switches the Temporal Java SDK to the shaded version. Analysis was...