Package io.temporal.api.common.v1
Interface WorkerVersionStampOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WorkerVersionStamp,WorkerVersionStamp.Builder
@Generated(value="protoc", comments="annotations:WorkerVersionStampOrBuilder.java.pb.meta") public interface WorkerVersionStampOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBuildId()An opaque whole-worker identifier.com.google.protobuf.ByteStringgetBuildIdBytes()An opaque whole-worker identifier.booleangetUseVersioning()If set, the worker is opting in to worker versioning.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBuildId
java.lang.String getBuildId()
An opaque whole-worker identifier. Replaces the deprecated `binary_checksum` field when this message is included in requests which previously used that.
string build_id = 1;- Returns:
- The buildId.
-
getBuildIdBytes
com.google.protobuf.ByteString getBuildIdBytes()
An opaque whole-worker identifier. Replaces the deprecated `binary_checksum` field when this message is included in requests which previously used that.
string build_id = 1;- Returns:
- The bytes for buildId.
-
getUseVersioning
boolean getUseVersioning()
If set, the worker is opting in to worker versioning. Otherwise, this is used only as a marker for workflow reset points and the BuildIDs search attribute.
bool use_versioning = 3;- Returns:
- The useVersioning.
-
-