Interface LocalSearchStatistics.LocalSearchFilterStatisticsOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getContext()
      Context within which the filter was called.
      com.google.protobuf.ByteString getContextBytes()
      Context within which the filter was called.
      double getDurationSeconds()
      Time spent in the filter.
      java.lang.String getLocalSearchFilter()
      Name of the filter.
      com.google.protobuf.ByteString getLocalSearchFilterBytes()
      Name of the filter.
      long getNumCalls()
      Number of times the filter was called.
      long getNumRejects()
      Number of times the filter rejected a neighbor.
      double getNumRejectsPerSecond()
      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 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.