Interface LoggingRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getClear()
      If true, discard any saved logging data (for all steps).
      boolean getDisableRpcLogging()
      If true, RPC logging will be disabled.
      boolean getEnableRpcLogging()
      If true, RPC logging will be enabled.
      long getFetchStepId​(int index)
      When set, requests all saved log data pertaining to the step.
      int getFetchStepIdCount()
      When set, requests all saved log data pertaining to the step.
      java.util.List<java.lang.Long> getFetchStepIdList()
      When set, requests all saved log data pertaining to the 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 Detail

      • getEnableRpcLogging

        boolean getEnableRpcLogging()
         If true, RPC logging will be enabled.
         
        bool enable_rpc_logging = 1;
        Returns:
        The enableRpcLogging.
      • getDisableRpcLogging

        boolean getDisableRpcLogging()
         If true, RPC logging will be disabled.
         
        bool disable_rpc_logging = 4;
        Returns:
        The disableRpcLogging.
      • getClear

        boolean getClear()
         If true, discard any saved logging data (for all steps).
         
        bool clear = 2;
        Returns:
        The clear.
      • getFetchStepIdList

        java.util.List<java.lang.Long> getFetchStepIdList()
         When set, requests all saved log data pertaining to the step.
         Any log data retrieved is eliminated from the store and cannot be
         retrieved again.
         
        repeated int64 fetch_step_id = 3;
        Returns:
        A list containing the fetchStepId.
      • getFetchStepIdCount

        int getFetchStepIdCount()
         When set, requests all saved log data pertaining to the step.
         Any log data retrieved is eliminated from the store and cannot be
         retrieved again.
         
        repeated int64 fetch_step_id = 3;
        Returns:
        The count of fetchStepId.
      • getFetchStepId

        long getFetchStepId​(int index)
         When set, requests all saved log data pertaining to the step.
         Any log data retrieved is eliminated from the store and cannot be
         retrieved again.
         
        repeated int64 fetch_step_id = 3;
        Parameters:
        index - The index of the element to return.
        Returns:
        The fetchStepId at the given index.