Interface Messages.StepInfoOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Messages.StepInfo, Messages.StepInfo.Builder
Enclosing class:
Messages

public static interface Messages.StepInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    / The error message in case of failure
    com.google.protobuf.ByteString
    / The error message in case of failure
    boolean
    / Flag to indicate if the current Step execution failed.
    / The current stack trace in case of failure
    com.google.protobuf.ByteString
    / The current stack trace in case of failure
    / The current request to execute Step
    / The current request to execute Step
    boolean
    / The current request to execute Step

    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 Details

    • hasStep

      boolean hasStep()
       / The current request to execute Step
       
      .gauge.messages.ExecuteStepRequest step = 1;
      Returns:
      Whether the step field is set.
    • getStep

       / The current request to execute Step
       
      .gauge.messages.ExecuteStepRequest step = 1;
      Returns:
      The step.
    • getStepOrBuilder

       / The current request to execute Step
       
      .gauge.messages.ExecuteStepRequest step = 1;
    • getIsFailed

      boolean getIsFailed()
       / Flag to indicate if the current Step execution failed.
       
      bool isFailed = 2;
      Returns:
      The isFailed.
    • getStackTrace

      String getStackTrace()
       / The current stack trace in case of failure
       
      string stackTrace = 3;
      Returns:
      The stackTrace.
    • getStackTraceBytes

      com.google.protobuf.ByteString getStackTraceBytes()
       / The current stack trace in case of failure
       
      string stackTrace = 3;
      Returns:
      The bytes for stackTrace.
    • getErrorMessage

      String getErrorMessage()
       / The error message in case of failure
       
      string errorMessage = 4;
      Returns:
      The errorMessage.
    • getErrorMessageBytes

      com.google.protobuf.ByteString getErrorMessageBytes()
       / The error message in case of failure
       
      string errorMessage = 4;
      Returns:
      The bytes for errorMessage.