Interface StreamIdOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    StreamId, StreamId.Builder

    public interface StreamIdOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getBuildId()
      The id of a Build message.
      com.google.protobuf.ByteString getBuildIdBytes()
      The id of a Build message.
      StreamId.BuildComponent getComponent()
      The component that emitted this event.
      int getComponentValue()
      The component that emitted this event.
      java.lang.String getInvocationId()
      The unique invocation ID within this build.
      com.google.protobuf.ByteString getInvocationIdBytes()
      The unique invocation ID within this build.
      • 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()
         The id of a Build message.
         
        string build_id = 1;
        Returns:
        The buildId.
      • getBuildIdBytes

        com.google.protobuf.ByteString getBuildIdBytes()
         The id of a Build message.
         
        string build_id = 1;
        Returns:
        The bytes for buildId.
      • getInvocationId

        java.lang.String getInvocationId()
         The unique invocation ID within this build.
         It should be the same as {invocation} (below) during the migration.
         
        string invocation_id = 6;
        Returns:
        The invocationId.
      • getInvocationIdBytes

        com.google.protobuf.ByteString getInvocationIdBytes()
         The unique invocation ID within this build.
         It should be the same as {invocation} (below) during the migration.
         
        string invocation_id = 6;
        Returns:
        The bytes for invocationId.
      • getComponentValue

        int getComponentValue()
         The component that emitted this event.
         
        .google.devtools.build.v1.StreamId.BuildComponent component = 3;
        Returns:
        The enum numeric value on the wire for component.
      • getComponent

        StreamId.BuildComponent getComponent()
         The component that emitted this event.
         
        .google.devtools.build.v1.StreamId.BuildComponent component = 3;
        Returns:
        The component.