Class RefreshStats

java.lang.Object
org.elasticsearch.index.refresh.RefreshStats
All Implemented Interfaces:
Writeable, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentFragment

public class RefreshStats
extends java.lang.Object
implements Writeable, org.elasticsearch.common.xcontent.ToXContentFragment
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent

    org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params

    Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable

    Writeable.Reader<V>, Writeable.Writer<V>
  • Field Summary

    Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent

    EMPTY_PARAMS
  • Constructor Summary

    Constructors
    Constructor Description
    RefreshStats()  
    RefreshStats​(long total, long totalTimeInMillis, long externalTotal, long externalTotalTimeInMillis, int listeners)  
    RefreshStats​(StreamInput in)  
  • Method Summary

    Modifier and Type Method Description
    void add​(RefreshStats refreshStats)  
    void addTotals​(RefreshStats refreshStats)  
    boolean equals​(java.lang.Object obj)  
    long getExternalTotal()  
    org.elasticsearch.common.unit.TimeValue getExternalTotalTime()
    The total time external refreshes have been executed.
    long getExternalTotalTimeInMillis()
    The total time spent executing external refreshes (in milliseconds).
    int getListeners()
    The number of waiting refresh listeners.
    long getTotal()
    The total number of refresh executed.
    org.elasticsearch.common.unit.TimeValue getTotalTime()
    The total time refreshes have been executed.
    long getTotalTimeInMillis()
    The total time spent executing refreshes (in milliseconds).
    int hashCode()  
    org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)  
    void writeTo​(StreamOutput out)
    Write this into the StreamOutput.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment

    isFragment
  • Constructor Details

    • RefreshStats

      public RefreshStats()
    • RefreshStats

      public RefreshStats​(StreamInput in) throws java.io.IOException
      Throws:
      java.io.IOException
    • RefreshStats

      public RefreshStats​(long total, long totalTimeInMillis, long externalTotal, long externalTotalTimeInMillis, int listeners)
  • Method Details

    • writeTo

      public void writeTo​(StreamOutput out) throws java.io.IOException
      Description copied from interface: Writeable
      Write this into the StreamOutput.
      Specified by:
      writeTo in interface Writeable
      Throws:
      java.io.IOException
    • add

      public void add​(RefreshStats refreshStats)
    • addTotals

      public void addTotals​(RefreshStats refreshStats)
    • getTotal

      public long getTotal()
      The total number of refresh executed.
    • getExternalTotal

      public long getExternalTotal()
    • getTotalTimeInMillis

      public long getTotalTimeInMillis()
      The total time spent executing refreshes (in milliseconds).
    • getExternalTotalTimeInMillis

      public long getExternalTotalTimeInMillis()
      The total time spent executing external refreshes (in milliseconds).
    • getTotalTime

      public org.elasticsearch.common.unit.TimeValue getTotalTime()
      The total time refreshes have been executed.
    • getExternalTotalTime

      public org.elasticsearch.common.unit.TimeValue getExternalTotalTime()
      The total time external refreshes have been executed.
    • getListeners

      public int getListeners()
      The number of waiting refresh listeners.
    • toXContent

      public org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException
      Specified by:
      toXContent in interface org.elasticsearch.common.xcontent.ToXContent
      Throws:
      java.io.IOException
    • equals

      public boolean equals​(java.lang.Object obj)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object