We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f91956 commit 1e49493Copy full SHA for 1e49493
temporal-sdk/src/main/java/io/temporal/workflow/Workflow.java
@@ -473,6 +473,10 @@ public static Promise<Void> newTimer(Duration delay) {
473
return WorkflowInternal.newTimer(delay);
474
}
475
476
+ /**
477
+ * @deprecated use {@link #newWorkflowQueue(int)} instead. An implementation returned by this
478
+ * method has a bug.
479
+ */
480
@Deprecated
481
public static <E> WorkflowQueue<E> newQueue(int capacity) {
482
return WorkflowInternal.newQueue(capacity);
0 commit comments