public abstract class StoreInfo
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
double |
getAverageWriteTime()
Get the average time (in seconds) a write call takes.
|
long |
getFileSize()
Deprecated.
this method is not applicable to all store types.
Instead, if applicable, use
FileStoreInfo.getSize()
or MStoreInfo.getSize() . |
long |
getFreeSpace()
Deprecated.
this method is not applicable to all store types.
Instead, if applicable, use
FileStoreInfo.getNotInUseSpace()
or MStoreInfo.getNotInUseSpace() . |
long |
getMsgBytes()
Get the total size of the data messages stored in the store.
|
long |
getMsgCount()
Get the number of data messages stored in the store.
|
long |
getSwappedBytes()
Get the total size of the data messages stored in the store
as a result of swapping out non-persistent messages.
|
long |
getSwappedCount()
Get the number of data messages stored in the store as a result of
swapping out non-persistent messages.
|
long |
getUsedSpace()
Deprecated.
this method is not applicable to all store types.
Instead, if applicable, use
FileStoreInfo.getInUseSpace()
or MStoreInfo.getInUseSpace() . |
double |
getWriteUsage()
Get the Ratio between time spent within write and total time
(server_rate_interval).
|
public long getMsgCount()
public long getMsgBytes()
public long getSwappedCount()
public long getSwappedBytes()
@Deprecated public long getFreeSpace()
FileStoreInfo.getNotInUseSpace()
or MStoreInfo.getNotInUseSpace()
.@Deprecated public long getUsedSpace()
FileStoreInfo.getInUseSpace()
or MStoreInfo.getInUseSpace()
.@Deprecated public long getFileSize()
FileStoreInfo.getSize()
or MStoreInfo.getSize()
.public double getAverageWriteTime()
public double getWriteUsage()
Copyright © Cloud Software Group, Inc. All rights reserved