Interface RequestInfoOrBuilder

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

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

    Modifier and Type
    Method
    Description
    An opaque string that should only be interpreted by the service generating it.
    com.google.protobuf.ByteString
    An opaque string that should only be interpreted by the service generating it.
    Any data that was used to serve this request.
    com.google.protobuf.ByteString
    Any data that was used to serve this request.

    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

    • getRequestId

      String getRequestId()
       An opaque string that should only be interpreted by the service generating
       it. For example, it can be used to identify requests in the service's logs.
       
      string request_id = 1;
      Returns:
      The requestId.
    • getRequestIdBytes

      com.google.protobuf.ByteString getRequestIdBytes()
       An opaque string that should only be interpreted by the service generating
       it. For example, it can be used to identify requests in the service's logs.
       
      string request_id = 1;
      Returns:
      The bytes for requestId.
    • getServingData

      String getServingData()
       Any data that was used to serve this request. For example, an encrypted
       stack trace that can be sent back to the service provider for debugging.
       
      string serving_data = 2;
      Returns:
      The servingData.
    • getServingDataBytes

      com.google.protobuf.ByteString getServingDataBytes()
       Any data that was used to serve this request. For example, an encrypted
       stack trace that can be sent back to the service provider for debugging.
       
      string serving_data = 2;
      Returns:
      The bytes for servingData.