Package com.tibco.tibjms.admin
Class MStoreInfo
- java.lang.Object
-
- com.tibco.tibjms.admin.StoreInfo
-
- com.tibco.tibjms.admin.MStoreInfo
-
@Deprecated public class MStoreInfo extends StoreInfo
Deprecated.As of EMS 10.1 Class representing information about a server's mstore-based store.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static MStoreInfo
from(javax.management.openmbean.CompositeData cd)
Deprecated.For Internal use only, may be removed or deprecated in future.long
getDiscardScanBytes()
Deprecated.Get the number of bytes examined at each discard scan interval.long
getDiscardScanInterval()
Deprecated.Get the interval for discard scan.java.lang.String
getFileName()
Deprecated.Get the file name.long
getInUseSpace()
Deprecated.Get the amount of space in the store file that is in use.long
getNotInUseSpace()
Deprecated.Get the amount of space in the store file that is not in use.long
getSize()
Deprecated.Get the total size of the store file.long
getWriteRate()
Deprecated.Get the number of bytes written per second.boolean
isFirstScanFinished()
Deprecated.Determine if the first scan is finished.boolean
isSynchronousWriteEnabled()
Deprecated.Indicates whether or not the file is opened in synchronous write mode.boolean
isTimeBoundCompactAvailable()
Deprecated.Indicates whether or not this mstore can be compacted in a time-bound manner or through the mstore_truncate property.boolean
isTruncationEnabled()
Deprecated.Indicates whether or not the server will periodically check if there is unused space at the end of the file and, if so, truncate the file.java.lang.String
toString()
Deprecated.-
Methods inherited from class com.tibco.tibjms.admin.StoreInfo
getAverageWriteTime, getFileSize, getFreeSpace, getMsgBytes, getMsgCount, getSwappedBytes, getSwappedCount, getUsedSpace, getWriteUsage
-
-
-
-
Method Detail
-
isTimeBoundCompactAvailable
public boolean isTimeBoundCompactAvailable()
Deprecated.Indicates whether or not this mstore can be compacted in a time-bound manner or through the mstore_truncate property.- Returns:
- true if time-bound compact is available for this mstore, false otherwise
- Since:
- EMS 8.3
-
getNotInUseSpace
public long getNotInUseSpace()
Deprecated.Get the amount of space in the store file that is not in use.- Returns:
- the number of bytes that are free
-
getInUseSpace
public long getInUseSpace()
Deprecated.Get the amount of space in the store file that is in use.- Returns:
- the number of bytes that are in use
-
getSize
public long getSize()
Deprecated.Get the total size of the store file.- Returns:
- the size in bytes
-
getFileName
public java.lang.String getFileName()
Deprecated.Get the file name.- Returns:
- file name
-
isTruncationEnabled
public boolean isTruncationEnabled()
Deprecated.Indicates whether or not the server will periodically check if there is unused space at the end of the file and, if so, truncate the file.- Returns:
- true if truncation is enabled, false otherwise
- Since:
- EMS 8.3
-
isSynchronousWriteEnabled
public boolean isSynchronousWriteEnabled()
Deprecated.Indicates whether or not the file is opened in synchronous write mode.- Returns:
- true if synchronous mode is enabled, false otherwise
-
getDiscardScanInterval
public long getDiscardScanInterval()
Deprecated.Get the interval for discard scan.- Returns:
- period in milliseconds.
-
getDiscardScanBytes
public long getDiscardScanBytes()
Deprecated.Get the number of bytes examined at each discard scan interval.- Returns:
- the amount in bytes
-
getWriteRate
public long getWriteRate()
Deprecated.Get the number of bytes written per second.- Returns:
- the byte rate.
- Since:
- EMS 6.1
-
isFirstScanFinished
public boolean isFirstScanFinished()
Deprecated.Determine if the first scan is finished.- Returns:
- true or false
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
from
public static MStoreInfo from(javax.management.openmbean.CompositeData cd) throws java.lang.Exception
Deprecated.For Internal use only, may be removed or deprecated in future.- Returns:
- a MStoreInfo object from CompositeData
- Throws:
java.lang.IllegalArgumentException
- if CompositeType does not match or if a null CompositeData is passed.java.lang.Exception
-
-