Interface IRedoLogFileStatistics
- All Known Subinterfaces:
IRedoLogFile<T>,IRedoLogStatistics
- All Known Implementing Classes:
DBMemoryRedoLogFile,DBSwapRedoLogFile,FixedSizeSwapRedoLogFile,MemoryRedoLogFile,RedoLogStatistics
public interface IRedoLogFileStatistics
Provide statistics of a redo log file
- Since:
- 7.1
- Author:
- eitany
-
Method Summary
-
Method Details
-
size
long size()- Returns:
- the number of replication packets held in the file
-
getExternalStorageSpaceUsed
long getExternalStorageSpaceUsed()- Returns:
- used space in bytes which is external to the jvm
-
getMemoryPacketsCount
long getMemoryPacketsCount()- Returns:
- number of packets held in memory
-
getExternalStoragePacketsCount
long getExternalStoragePacketsCount()- Returns:
- number of packets held in storage
-
getMemoryPacketsWeight
long getMemoryPacketsWeight()- Returns:
- total weight of packets held in memory
-
getExternalStoragePacketsWeight
long getExternalStoragePacketsWeight()- Returns:
- total weight of packets held in external storage
-