Package io.temporal.api.taskqueue.v1
Interface TaskQueueVersionSelectionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TaskQueueVersionSelection,TaskQueueVersionSelection.Builder
@Generated(value="protoc", comments="annotations:TaskQueueVersionSelectionOrBuilder.java.pb.meta") public interface TaskQueueVersionSelectionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAllActive()Include all active versions.java.lang.StringgetBuildIds(int index)Include specific Build IDs.com.google.protobuf.ByteStringgetBuildIdsBytes(int index)Include specific Build IDs.intgetBuildIdsCount()Include specific Build IDs.java.util.List<java.lang.String>getBuildIdsList()Include specific Build IDs.booleangetUnversioned()Include the unversioned queue.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBuildIdsList
java.util.List<java.lang.String> getBuildIdsList()
Include specific Build IDs.
repeated string build_ids = 1;- Returns:
- A list containing the buildIds.
-
getBuildIdsCount
int getBuildIdsCount()
Include specific Build IDs.
repeated string build_ids = 1;- Returns:
- The count of buildIds.
-
getBuildIds
java.lang.String getBuildIds(int index)
Include specific Build IDs.
repeated string build_ids = 1;- Parameters:
index- The index of the element to return.- Returns:
- The buildIds at the given index.
-
getBuildIdsBytes
com.google.protobuf.ByteString getBuildIdsBytes(int index)
Include specific Build IDs.
repeated string build_ids = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the buildIds at the given index.
-
getUnversioned
boolean getUnversioned()
Include the unversioned queue.
bool unversioned = 2;- Returns:
- The unversioned.
-
getAllActive
boolean getAllActive()
Include all active versions. A version is considered active if, in the last few minutes, it has had new tasks or polls, or it has been the subject of certain task queue API calls.
bool all_active = 3;- Returns:
- The allActive.
-
-