File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
temporal-sdk/src/main/java/io/temporal Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 20
20
21
21
package io .temporal .common ;
22
22
23
+ import io .temporal .worker .WorkerDeploymentOptions ;
24
+
23
25
/** Specifies when a workflow might move from a worker of one Build Id to another. */
24
26
@ Experimental
25
27
public enum VersioningBehavior {
26
28
/**
27
29
* An unspecified versioning behavior. By default, workers opting into worker versioning will be
28
- * required to specify a behavior. TODO: Link to documentation.
30
+ * required to specify a behavior. See {@link
31
+ * io.temporal.worker.WorkerOptions.Builder#setDeploymentOptions(WorkerDeploymentOptions)}.
29
32
*/
30
33
VERSIONING_BEHAVIOR_UNSPECIFIED ,
31
34
/** The workflow will be pinned to the current Build ID unless manually moved. */
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ public Builder setVersion(WorkerDeploymentVersion version) {
55
55
}
56
56
57
57
/**
58
- * Provides a default Versioning Behavior to workflows that do not set one with the TODO: Link
59
- * to annotation
58
+ * Provides a default Versioning Behavior to workflows that do not set one with the {@link
59
+ * io.temporal.workflow.WorkflowVersioningBehavior} annotation.
60
60
*
61
61
* <p>NOTE: When the Deployment-based Worker Versioning feature is on, and default versioning
62
62
* behavior is unspecified, workflows that do not set the Versioning Behavior will fail at
You can’t perform that action at this time.
0 commit comments