Interface LocalSearchStatistics.LocalSearchOperatorStatisticsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LocalSearchStatistics.LocalSearchOperatorStatistics,LocalSearchStatistics.LocalSearchOperatorStatistics.Builder
- Enclosing class:
- LocalSearchStatistics
public static interface LocalSearchStatistics.LocalSearchOperatorStatisticsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetDurationSeconds()Time spent in the operator.java.lang.StringgetLocalSearchOperator()Name of the operator.com.google.protobuf.ByteStringgetLocalSearchOperatorBytes()Name of the operator.longgetNumAcceptedNeighbors()Number of neighbors eventually accepted.longgetNumFilteredNeighbors()Number of neighbors which were filtered.longgetNumNeighbors()Number of neighbors generated by the operator.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLocalSearchOperator
java.lang.String getLocalSearchOperator()
Name of the operator.
string local_search_operator = 1;- Returns:
- The localSearchOperator.
-
getLocalSearchOperatorBytes
com.google.protobuf.ByteString getLocalSearchOperatorBytes()
Name of the operator.
string local_search_operator = 1;- Returns:
- The bytes for localSearchOperator.
-
getNumNeighbors
long getNumNeighbors()
Number of neighbors generated by the operator.
int64 num_neighbors = 2;- Returns:
- The numNeighbors.
-
getNumFilteredNeighbors
long getNumFilteredNeighbors()
Number of neighbors which were filtered.
int64 num_filtered_neighbors = 3;- Returns:
- The numFilteredNeighbors.
-
getNumAcceptedNeighbors
long getNumAcceptedNeighbors()
Number of neighbors eventually accepted.
int64 num_accepted_neighbors = 4;- Returns:
- The numAcceptedNeighbors.
-
getDurationSeconds
double getDurationSeconds()
Time spent in the operator.
double duration_seconds = 5;- Returns:
- The durationSeconds.
-
-