Interface Span.TimeEvent.MessageEventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Span.TimeEvent.MessageEvent
,Span.TimeEvent.MessageEvent.Builder
- Enclosing class:
- Span.TimeEvent
public static interface Span.TimeEvent.MessageEventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCompressedSizeBytes()
The number of compressed bytes sent or received.long
getId()
An identifier for the MessageEvent's message that can be used to match `SENT` and `RECEIVED` MessageEvents.Span.TimeEvent.MessageEvent.Type
getType()
Type of MessageEvent.int
getTypeValue()
Type of MessageEvent.long
getUncompressedSizeBytes()
The number of uncompressed bytes sent or received.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
Type of MessageEvent. Indicates whether the message was sent or received.
.google.devtools.cloudtrace.v2.Span.TimeEvent.MessageEvent.Type type = 1;
- Returns:
- The enum numeric value on the wire for type.
-
getType
Span.TimeEvent.MessageEvent.Type getType()
Type of MessageEvent. Indicates whether the message was sent or received.
.google.devtools.cloudtrace.v2.Span.TimeEvent.MessageEvent.Type type = 1;
- Returns:
- The type.
-
getId
long getId()
An identifier for the MessageEvent's message that can be used to match `SENT` and `RECEIVED` MessageEvents.
int64 id = 2;
- Returns:
- The id.
-
getUncompressedSizeBytes
long getUncompressedSizeBytes()
The number of uncompressed bytes sent or received.
int64 uncompressed_size_bytes = 3;
- Returns:
- The uncompressedSizeBytes.
-
getCompressedSizeBytes
long getCompressedSizeBytes()
The number of compressed bytes sent or received. If missing, the compressed size is assumed to be the same size as the uncompressed size.
int64 compressed_size_bytes = 4;
- Returns:
- The compressedSizeBytes.
-
-