Files
Donald Pinckney 0c8586b4c2 Add Java SDK support (#42)
* Add Java SDK reference files (11 files)

Create complete Java reference documentation covering:
- java.md: Entry point with quick start tutorial, key concepts
- patterns.md: 17 patterns (signals, queries, updates, child workflows,
  saga, cancellation scopes, heartbeating, etc.)
- determinism.md: Safe alternatives table, forbidden operations
- determinism-protection.md: Convention-based enforcement (no sandbox)
- error-handling.md: ApplicationFailure, retry/timeout config
- gotchas.md: Non-deterministic operations, cancellation, heartbeating
- testing.md: TestWorkflowEnvironment, Mockito mocking, replay testing
- versioning.md: Workflow.getVersion(), worker versioning
- data-handling.md: Jackson, PayloadConverter, encryption, search attributes
- observability.md: SLF4J logging, Micrometer metrics
- advanced-features.md: Schedules, async completion, worker tuning

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Fix Java alignment issues from self-review

- Reduce gotchas.md Non-Deterministic Operations from ~94 lines to ~12
  (reference determinism.md instead of duplicating)
- Remove Workflow Failure Exception Types duplication from error-handling.md
  (keep only in advanced-features.md)
- Expand versioning.md Worker Versioning with Key Concepts, PINNED vs
  AUTO_UPGRADE, Deployment Strategies subsections
- Fix section names to match Python reference style:
  Activity Heartbeat Details, Handling Activity Errors,
  Retry Policy Configuration, Workflow Test Environment,
  Mocking Activities, Workflow Replay Testing
- Reduce data-handling.md Payload Encryption verbosity
- Reduce observability.md Logger Customization verbosity
- Reduce testing.md to single approach per section
- Rename determinism.md "Convention-Based Enforcement" to "SDK Protection"
- Fix handler guidance in patterns.md to match Python

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Fix correctness issues in Java reference files

- patterns.md: Fix Queries section — ActivityStub → typed interface
  (Workflow.newActivityStub returns the typed interface, not ActivityStub)
- data-handling.md: Add missing ProtobufPayloadConverter to default
  converter chain (4th of 5 converters)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Add Java to SKILL.md and core/determinism.md

- SKILL.md: Add "Temporal Java" trigger phrase, update Overview to
  list Java, add Java entry to Getting Started references
- core/determinism.md: Add Java entry to SDK Protection Mechanisms
  (no sandbox, convention-based, NonDeterministicException at replay)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Apply manual editorial fixes to Java references

- java.md: Remove "Understanding Replay" section (covered by Overview),
  simplify File Organization note (no sandbox rationale)
- gotchas.md: Move Heartbeating before Cancellation, make Wrong Retry
  Classification brief with reference (not inline examples)
- error-handling.md: Remove editorializing from Workflow Failure note
- determinism-protection.md: Remove cross-language comparison paragraph
  (state Java's approach on its own terms)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Add temporal-workflowcheck static analysis to Java determinism docs

- determinism-protection.md: Add "Static Analysis with temporal-workflowcheck"
  section with Gradle/Maven setup, manual run, and suppression instructions.
  Beta warning included.
- determinism.md: Update overview and SDK Protection to reference workflowcheck
- core/determinism.md: Update Java entry in SDK Protection Mechanisms

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Integrate feedback from Go PR into Java patterns

- Updates: Add validator note — validators must not mutate state or
  block (matches note added to Python, TypeScript, Go, and core)
- Saga Pattern: Use Workflow.newDetachedCancellationScope() for
  compensations so they execute even if the workflow is cancelled
  (mirrors Go's workflow.NewDisconnectedContext pattern)

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>

* docs: add @WorkflowInit description to java.md Key Concepts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* mark java as supported

* Apply suggestions from code review

Co-authored-by: Brian Strauch <brian@brianstrauch.com>

* strongly recommend java 21+

* Softened stance on static checker and replay testing.

* address python/typescript sandboxing comment

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Brian Strauch <brian.strauch@temporal.io>
Co-authored-by: Brian Strauch <brian@brianstrauch.com>
2026-04-02 17:07:33 -04:00

15 KiB

Java SDK Patterns

Signals

@WorkflowInterface
public interface OrderWorkflow {
    @WorkflowMethod
    String run();

    @SignalMethod
    void approve();

    @SignalMethod
    void addItem(String item);
}

public class OrderWorkflowImpl implements OrderWorkflow {
    private boolean approved = false;
    private final List<String> items = new ArrayList<>();

    @Override
    public void approve() {
        this.approved = true;
    }

    @Override
    public void addItem(String item) {
        this.items.add(item);
    }

    @Override
    public String run() {
        Workflow.await(() -> this.approved);
        return "Processed " + this.items.size() + " items";
    }
}

Dynamic Signal Handlers

For handling signals with names not known at compile time. Use cases for this pattern are rare — most workflows should use statically defined signal handlers.

public class DynamicSignalWorkflowImpl implements DynamicSignalWorkflow {
    private final Map<String, List<String>> signals = new HashMap<>();

    @Override
    public String run() {
        Workflow.registerListener(
            (DynamicSignalHandler) (signalName, encodedArgs) -> {
                signals.computeIfAbsent(signalName, k -> new ArrayList<>())
                    .add(encodedArgs.get(0, String.class));
            });
        // ... workflow logic ...
    }
}

Queries

Important: Queries must NOT modify workflow state or have side effects.

@WorkflowInterface
public interface StatusWorkflow {
    @WorkflowMethod
    String run();

    @QueryMethod
    String getStatus();

    @QueryMethod
    int getProgress();
}

public class StatusWorkflowImpl implements StatusWorkflow {
    private String status = "pending";
    private int progress = 0;

    @Override
    public String getStatus() {
        return this.status;
    }

    @Override
    public int getProgress() {
        return this.progress;
    }

    @Override
    public String run() {
        MyActivities activities = Workflow.newActivityStub(
            MyActivities.class,
            ActivityOptions.newBuilder()
                .setStartToCloseTimeout(Duration.ofMinutes(1))
                .build());

        this.status = "running";
        for (int i = 0; i < 100; i++) {
            this.progress = i;
            activities.processItem(i);
        }
        this.status = "completed";
        return "done";
    }
}

Dynamic Query Handlers

For handling queries with names not known at compile time. Use cases for this pattern are rare — most workflows should use statically defined query handlers.

Workflow.registerListener(
    (DynamicQueryHandler) (queryName, encodedArgs) -> {
        if (queryName.equals("getField")) {
            String fieldName = encodedArgs.get(0, String.class);
            return fields.get(fieldName);
        }
        return null;
    });

Updates

@WorkflowInterface
public interface OrderWorkflow {
    @WorkflowMethod
    String run();

    @UpdateMethod
    int addItem(String item);

    @UpdateValidatorMethod(updateName = "addItem")
    void validateAddItem(String item);
}

public class OrderWorkflowImpl implements OrderWorkflow {
    private final List<String> items = new ArrayList<>();

    @Override
    public int addItem(String item) {
        this.items.add(item);
        return this.items.size(); // Returns new count to caller
    }

    @Override
    public void validateAddItem(String item) {
        if (item == null || item.isEmpty()) {
            throw new IllegalArgumentException("Item cannot be empty");
        }
        if (this.items.size() >= 100) {
            throw new IllegalArgumentException("Order is full");
        }
    }

    // ... run() ...
}

Important: Validators must NOT mutate workflow state or do anything blocking (no activities, sleeps, or other commands). They are read-only, similar to query handlers. Throw an exception to reject the update; return normally to accept.

Child Workflows

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public List<String> run(List<Order> orders) {
        List<String> results = new ArrayList<>();
        for (Order order : orders) {
            ProcessOrderWorkflow child = Workflow.newChildWorkflowStub(
                ProcessOrderWorkflow.class,
                ChildWorkflowOptions.newBuilder()
                    .setWorkflowId("order-" + order.getId())
                    .build());
            results.add(child.run(order));
        }
        return results;
    }
}

Child Workflow Options

ChildWorkflowOptions options = ChildWorkflowOptions.newBuilder()
    .setWorkflowId("child-workflow-id")
    // Control what happens to child when parent closes
    .setParentClosePolicy(ParentClosePolicy.PARENT_CLOSE_POLICY_ABANDON)
    // Control what happens to child when parent is cancelled
    .setCancellationType(ChildWorkflowCancellationType.WAIT_CANCELLATION_COMPLETED)
    .setWorkflowExecutionTimeout(Duration.ofMinutes(10))
    .build();

ProcessOrderWorkflow child = Workflow.newChildWorkflowStub(
    ProcessOrderWorkflow.class, options);

Handles to External Workflows

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public void run(String targetWorkflowId) {
        // Get handle to external workflow
        TargetWorkflow external = Workflow.newExternalWorkflowStub(
            TargetWorkflow.class, targetWorkflowId);

        // Signal the external workflow
        external.dataReady(dataPayload);

        // Or cancel it using untyped stub
        ExternalWorkflowStub untypedExternal =
            Workflow.newUntypedExternalWorkflowStub(targetWorkflowId);
        untypedExternal.cancel();
    }
}

Parallel Execution

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public List<String> run(List<String> items) {
        MyActivities activities = Workflow.newActivityStub(
            MyActivities.class,
            ActivityOptions.newBuilder()
                .setStartToCloseTimeout(Duration.ofMinutes(5))
                .build());

        // Execute activities in parallel
        List<Promise<String>> promises = new ArrayList<>();
        for (String item : items) {
            promises.add(Async.function(activities::processItem, item));
        }

        // Wait for all to complete
        Promise.allOf(promises).get();

        // Collect results
        List<String> results = new ArrayList<>();
        for (Promise<String> promise : promises) {
            results.add(promise.get());
        }
        return results;
    }
}

Continue-as-New

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public String run(WorkflowState state) {
        while (true) {
            state = processBatch(state);

            if (state.isComplete()) {
                return "done";
            }

            // Continue with fresh history before hitting limits
            if (Workflow.getInfo().isContinueAsNewSuggested()) {
                Workflow.continueAsNew(state);
            }
        }
    }
}

Saga Pattern (Compensations)

Important: Compensation activities should be idempotent — they may be retried (as with ALL activities).

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public String run(Order order) {
        MyActivities activities = Workflow.newActivityStub(
            MyActivities.class,
            ActivityOptions.newBuilder()
                .setStartToCloseTimeout(Duration.ofMinutes(5))
                .build());

        List<Runnable> compensations = new ArrayList<>();

        try {
            // Note - we save the compensation BEFORE running the activity,
            // because the following could happen:
            // 1. reserveInventory starts running
            // 2. it does successfully reserve inventory
            // 3. but then fails for some other reason (timeout, reporting metrics, etc.)
            // 4. in that case, the activity would have failed, but the effect still happened
            // So, the compensation needs to handle both reserved and unreserved states.
            compensations.add(() -> activities.releaseInventoryIfReserved(order));
            activities.reserveInventory(order);

            compensations.add(() -> activities.refundPaymentIfCharged(order));
            activities.chargePayment(order);

            activities.shipOrder(order);

            return "Order completed";

        } catch (Exception e) {
            Workflow.getLogger(MyWorkflowImpl.class)
                .error("Order failed, running compensations", e);
            // Use a detached cancellation scope so compensations run even if
            // the workflow itself was cancelled.
            CancellationScope compensationScope = Workflow.newDetachedCancellationScope(() -> {
                Collections.reverse(compensations);
                for (Runnable compensate : compensations) {
                    try {
                        compensate.run();
                    } catch (Exception compErr) {
                        Workflow.getLogger(MyWorkflowImpl.class)
                            .error("Compensation failed", compErr);
                    }
                }
            });
            compensationScope.run();
            throw Workflow.wrap(e);
        }
    }
}

Cancellation Scopes

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public String run() {
        try {
            MyActivities activities = Workflow.newActivityStub(
                MyActivities.class,
                ActivityOptions.newBuilder()
                    .setStartToCloseTimeout(Duration.ofHours(1))
                    .build());

            activities.longRunningActivity();
            return "completed";

        } catch (CanceledFailure e) {
            // Workflow was cancelled - perform cleanup
            Workflow.getLogger(MyWorkflowImpl.class)
                .info("Workflow cancelled, running cleanup");

            // Use nonCancellable scope so cleanup activities still run
            CancellationScope cleanupScope = Workflow.newDetachedCancellationScope(
                () -> {
                    MyActivities activities = Workflow.newActivityStub(
                        MyActivities.class,
                        ActivityOptions.newBuilder()
                            .setStartToCloseTimeout(Duration.ofMinutes(5))
                            .build());
                    activities.cleanupActivity();
                });
            cleanupScope.run();
            throw e; // Re-throw to mark workflow as cancelled
        }
    }
}

Timeout scope:

CancellationScope timeoutScope = Workflow.newCancellationScope(
    () -> {
        // This scope will be cancelled after 30 minutes
        activities.longRunningActivity();
    });
timeoutScope.run();
// Cancel after timeout
Workflow.newTimer(Duration.ofMinutes(30)).thenApply(r -> {
    timeoutScope.cancel();
    return null;
});

Wait Condition with Timeout

public class MyWorkflowImpl implements MyWorkflow {
    private boolean approved = false;

    @Override
    public String run() {
        // Wait for approval with 24-hour timeout
        boolean received = Workflow.await(Duration.ofHours(24), () -> this.approved);
        if (received) {
            return "approved";
        }
        return "auto-rejected due to timeout";
    }
}

Waiting for All Handlers to Finish

Signal and update handlers should generally be non-async (avoid running activities from them). Otherwise, the workflow may complete before handlers finish their execution. However, making handlers non-async sometimes requires workarounds that add complexity.

When handlers do run async operations, call Workflow.await(() -> Workflow.isEveryHandlerFinished()) at the end of your workflow (or before continue-as-new) to prevent completion until all pending handlers complete.

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public String run() {
        // ... main workflow logic ...

        // Before exiting, wait for all handlers to finish
        Workflow.await(() -> Workflow.isEveryHandlerFinished());
        return "done";
    }
}

Activity Heartbeat Details

WHY:

  • Support activity cancellation — Cancellations are delivered via heartbeat; activities that don't heartbeat won't know they've been cancelled
  • Resume progress after worker failure — Heartbeat details persist across retries

WHEN:

  • Cancellable activities — Any activity that should respond to cancellation
  • Long-running activities — Track progress for resumability
  • Checkpointing — Save progress periodically
@ActivityInterface
public interface MyActivities {
    @ActivityMethod
    String processLargeFile(String filePath);
}

public class MyActivitiesImpl implements MyActivities {
    @Override
    public String processLargeFile(String filePath) {
        ActivityExecutionContext ctx = Activity.getExecutionContext();

        // Get heartbeat details from previous attempt (if any)
        Optional<Integer> lastLine = ctx.getHeartbeatDetails(Integer.class);
        int startLine = lastLine.orElse(0);

        try {
            List<String> lines = readFile(filePath);
            for (int i = startLine; i < lines.size(); i++) {
                processLine(lines.get(i));

                // Heartbeat with progress
                // If cancelled, heartbeat() throws CanceledFailure
                ctx.heartbeat(i + 1);
            }
            return "completed";
        } catch (ActivityCompletionException e) {
            // CanceledFailure extends ActivityCompletionException
            cleanup();
            throw e;
        }
    }
}

Set heartbeatTimeout in ActivityOptions to enable heartbeat-based failure detection:

ActivityOptions options = ActivityOptions.newBuilder()
    .setStartToCloseTimeout(Duration.ofHours(1))
    .setHeartbeatTimeout(Duration.ofSeconds(30))
    .build();

Timers

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public String run() {
        Workflow.sleep(Duration.ofHours(1));

        return "Timer fired";
    }
}

Local Activities

Purpose: Reduce latency for short, lightweight operations by skipping the task queue. ONLY use these when necessary for performance. Do NOT use these by default, as they are not durable and distributed.

public class MyWorkflowImpl implements MyWorkflow {
    @Override
    public String run() {
        MyActivities localActivities = Workflow.newLocalActivityStub(
            MyActivities.class,
            LocalActivityOptions.newBuilder()
                .setStartToCloseTimeout(Duration.ofSeconds(5))
                .build());

        String result = localActivities.quickLookup("key");
        return result;
    }
}