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
Modifier and TypeMethodDescriptionContext within which the filter was called.com.google.protobuf.ByteString
Context within which the filter was called.double
Time spent in the filter.Name of the filter.com.google.protobuf.ByteString
Name of the filter.long
Number of times the filter was called.long
Number of times the filter rejected a neighbor.double
Number of rejects per second.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
-
getLocalSearchFilter
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
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.
-