Package io.opencensus.proto.trace.v1
Interface Span.LinksOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Span.Links,Span.Links.Builder
- Enclosing class:
- Span
public static interface Span.LinksOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDroppedLinksCount()The number of dropped links after the maximum size was enforced.Span.LinkgetLink(int index)A collection of links.intgetLinkCount()A collection of links.List<Span.Link>getLinkList()A collection of links.Span.LinkOrBuildergetLinkOrBuilder(int index)A collection of links.List<? extends Span.LinkOrBuilder>getLinkOrBuilderList()A collection of links.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLinkList
List<Span.Link> getLinkList()
A collection of links.
repeated .opencensus.proto.trace.v1.Span.Link link = 1;
-
getLink
Span.Link getLink(int index)
A collection of links.
repeated .opencensus.proto.trace.v1.Span.Link link = 1;
-
getLinkCount
int getLinkCount()
A collection of links.
repeated .opencensus.proto.trace.v1.Span.Link link = 1;
-
getLinkOrBuilderList
List<? extends Span.LinkOrBuilder> getLinkOrBuilderList()
A collection of links.
repeated .opencensus.proto.trace.v1.Span.Link link = 1;
-
getLinkOrBuilder
Span.LinkOrBuilder getLinkOrBuilder(int index)
A collection of links.
repeated .opencensus.proto.trace.v1.Span.Link link = 1;
-
getDroppedLinksCount
int getDroppedLinksCount()
The number of dropped links after the maximum size was enforced. If this value is 0, then no links were dropped.
int32 dropped_links_count = 2;- Returns:
- The droppedLinksCount.
-
-