Interface LocalSearchStatistics.LocalSearchFilterStatisticsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LocalSearchStatistics.LocalSearchFilterStatistics,LocalSearchStatistics.LocalSearchFilterStatistics.Builder
- Enclosing class:
- LocalSearchStatistics
public static interface LocalSearchStatistics.LocalSearchFilterStatisticsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetContext()Context within which the filter was called.com.google.protobuf.ByteStringgetContextBytes()Context within which the filter was called.doublegetDurationSeconds()Time spent in the filter.java.lang.StringgetLocalSearchFilter()Name of the filter.com.google.protobuf.ByteStringgetLocalSearchFilterBytes()Name of the filter.longgetNumCalls()Number of times the filter was called.longgetNumRejects()Number of times the filter rejected a neighbor.doublegetNumRejectsPerSecond()Number of rejects per second.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLocalSearchFilter
java.lang.String getLocalSearchFilter()
Name of the filter.
string local_search_filter = 1;- Returns:
- The localSearchFilter.
-
getLocalSearchFilterBytes
com.google.protobuf.ByteString getLocalSearchFilterBytes()
Name of the filter.
string local_search_filter = 1;- Returns:
- The bytes for localSearchFilter.
-
getNumCalls
long getNumCalls()
Number of times the filter was called.
int64 num_calls = 2;- Returns:
- The numCalls.
-
getNumRejects
long getNumRejects()
Number of times the filter rejected a neighbor.
int64 num_rejects = 3;- Returns:
- The numRejects.
-
getDurationSeconds
double getDurationSeconds()
Time spent in the filter.
double duration_seconds = 4;- Returns:
- The durationSeconds.
-
getNumRejectsPerSecond
double getNumRejectsPerSecond()
Number of rejects per second.
double num_rejects_per_second = 5;- Returns:
- The numRejectsPerSecond.
-
getContext
java.lang.String getContext()
Context within which the filter was called.
string context = 6;- Returns:
- The context.
-
getContextBytes
com.google.protobuf.ByteString getContextBytes()
Context within which the filter was called.
string context = 6;- Returns:
- The bytes for context.
-
-