Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package io.temporal.activity;

import io.temporal.api.common.v1.Payloads;
import io.temporal.common.Experimental;
import io.temporal.common.Priority;
import io.temporal.common.RetryOptions;
import java.time.Duration;
Expand Down Expand Up @@ -165,7 +164,6 @@ default boolean isInWorkflow() {
* <p>Note: If unset or on an older server version, this method will return {@link
* Priority#getDefaultInstance()}.
*/
@Experimental
@Nonnull
Priority getPriority();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ public Builder setSummary(String summary) {
*
* <p>Defaults to inheriting priority from the workflow that scheduled the activity.
*/
@Experimental
public Builder setPriority(Priority priority) {
this.priority = priority;
return this;
Expand Down Expand Up @@ -455,7 +454,6 @@ public String getSummary() {
return summary;
}

@Experimental
public Priority getPriority() {
return priority;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,6 @@ public Builder setOnConflictOptions(OnConflictOptions onConflictOptions) {
* Optional priority settings that control relative ordering of task processing when tasks are
* backed up in a queue.
*/
@Experimental
public Builder setPriority(Priority priority) {
this.priority = priority;
return this;
Expand Down Expand Up @@ -727,7 +726,6 @@ public String getStaticDetails() {
return onConflictOptions;
}

@Experimental
public Priority getPriority() {
return priority;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* <p>For all fields, the field not present or equal to zero/empty string means to inherit the value
* from the calling workflow, or if there is no calling workflow, then use the default value.
*/
@Experimental
public class Priority {
public static Priority.Builder newBuilder() {
return new Priority.Builder(null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ public Builder setStaticDetails(String staticDetails) {
* Optional priority settings that control relative ordering of task processing when tasks are
* backed up in a queue.
*/
@Experimental
public Builder setPriority(Priority priority) {
this.priority = priority;
return this;
Expand Down Expand Up @@ -624,7 +623,6 @@ public String getStaticDetails() {
return staticDetails;
}

@Experimental
public Priority getPriority() {
return priority;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ public interface WorkflowInfo {
* <p>Note: If unset or on an older server version, this method will return {@link
* Priority#getDefaultInstance()}.
*/
@Experimental
@Nonnull
Priority getPriority();
}
Loading