Class BufferStats
- java.lang.Object
-
- org.apache.zookeeper.server.quorum.BufferStats
-
public class BufferStats extends Object
Provides live statistics about Jute buffer usage in term of proposal and client request size.
-
-
Field Summary
Fields Modifier and Type Field Description static int
INIT_VALUE
-
Constructor Summary
Constructors Constructor Description BufferStats()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getLastBufferSize()
Size of the last buffer usage.int
getMaxBufferSize()
Size of the largest buffer usage.int
getMinBufferSize()
Size of the smallest buffer usage.void
reset()
Reset statistics.void
setLastBufferSize(int value)
Updates statistics by setting the last buffer usage size.String
toString()
-
-
-
Field Detail
-
INIT_VALUE
public static final int INIT_VALUE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getLastBufferSize
public int getLastBufferSize()
Size of the last buffer usage.
-
setLastBufferSize
public void setLastBufferSize(int value)
Updates statistics by setting the last buffer usage size.
-
getMinBufferSize
public int getMinBufferSize()
Size of the smallest buffer usage.
-
getMaxBufferSize
public int getMaxBufferSize()
Size of the largest buffer usage.
-
reset
public void reset()
Reset statistics.
-
-