Interface LocalSearchStatistics.LocalSearchOperatorStatisticsOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double getDurationSeconds()
      Time spent in the operator.
      java.lang.String getLocalSearchOperator()
      Name of the operator.
      com.google.protobuf.ByteString getLocalSearchOperatorBytes()
      Name of the operator.
      long getNumAcceptedNeighbors()
      Number of neighbors eventually accepted.
      long getNumFilteredNeighbors()
      Number of neighbors which were filtered.
      long getNumNeighbors()
      Number of neighbors generated by the operator.
      • 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 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.