Package org.elasticsearch.monitor.jvm
Class JvmStats.BufferPool
- java.lang.Object
-
- org.elasticsearch.monitor.jvm.JvmStats.BufferPool
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Constructor Summary
Constructors Constructor Description BufferPool(java.lang.String name, long count, long totalCapacity, long used)BufferPool(StreamInput in)
-
Method Summary
Modifier and Type Method Description longgetCount()java.lang.StringgetName()ByteSizeValuegetTotalCapacity()ByteSizeValuegetUsed()voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
-
-
Constructor Detail
-
BufferPool
public BufferPool(java.lang.String name, long count, long totalCapacity, long used)
-
BufferPool
public BufferPool(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:WriteableWrite this into the StreamOutput.
-
getName
public java.lang.String getName()
-
getCount
public long getCount()
-
getTotalCapacity
public ByteSizeValue getTotalCapacity()
-
getUsed
public ByteSizeValue getUsed()
-
-