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.String getBuildId()
      An opaque whole-worker identifier.
      com.google.protobuf.ByteString getBuildIdBytes()
      An opaque whole-worker identifier.
      java.lang.String getBundleId()
      Set if the worker used a dynamically loadable bundle to process the task.
      com.google.protobuf.ByteString getBundleIdBytes()
      Set if the worker used a dynamically loadable bundle to process the task.
      boolean getUseVersioning()
      If set, the worker is opting in to worker versioning.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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.
      • getBundleId

        java.lang.String getBundleId()
         Set if the worker used a dynamically loadable bundle to process
         the task. The bundle could be a WASM blob, JS bundle, etc.
         
        string bundle_id = 2;
        Returns:
        The bundleId.
      • getBundleIdBytes

        com.google.protobuf.ByteString getBundleIdBytes()
         Set if the worker used a dynamically loadable bundle to process
         the task. The bundle could be a WASM blob, JS bundle, etc.
         
        string bundle_id = 2;
        Returns:
        The bytes for bundleId.
      • 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.