From 6f42fed2a1c0969b7493c05a90a6cf9411eb92aa Mon Sep 17 00:00:00 2001 From: Cassandra Coyle Date: Thu, 21 Aug 2025 16:39:40 -0500 Subject: [PATCH] rm constructor info from readme Signed-off-by: Cassandra Coyle --- .../java/io/dapr/examples/workflows/README.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/examples/src/main/java/io/dapr/examples/workflows/README.md b/examples/src/main/java/io/dapr/examples/workflows/README.md index 6aab2cbb8..047312bd4 100644 --- a/examples/src/main/java/io/dapr/examples/workflows/README.md +++ b/examples/src/main/java/io/dapr/examples/workflows/README.md @@ -768,24 +768,6 @@ public class App3FinalizeActivity implements WorkflowActivity { } ``` -**WorkflowTaskOptions Constructors for Cross-App Calls:** - -The `WorkflowTaskOptions` class supports several constructors for cross-app calls: - -```java -// App ID only -new WorkflowTaskOptions("app2") - -// Retry policy + app ID -new WorkflowTaskOptions(retryPolicy, "app2") - -// Retry handler + app ID -new WorkflowTaskOptions(retryHandler, "app2") - -// All parameters -new WorkflowTaskOptions(retryPolicy, retryHandler, "app2") -``` - **Key Features:** - **Cross-app activity calls**: Call activities in different Dapr applications specifying the appID in the WorkflowTaskOptions - **WorkflowTaskOptions with appId**: Specify which app should handle the activity