Interface PageLockTrackerMXBean
-
- All Known Implementing Classes:
PageLockTrackerMXBeanImpl
@MXBeanDescription("MBean that provides access to page lock tracking.") public interface PageLockTrackerMXBean
This interface defines JMX managment interface for page lock tracking.
-
-
Field Summary
Fields Modifier and Type Field Description static StringMBEAN_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringdumpLocks()Take page locks dump.StringdumpLocksToFile()Take page locks dump and save to file.StringdumpLocksToFile(String path)Take page locks dump and save to file for specific path.voiddumpLocksToLog()Take page locks dump and print it to console.
-
-
-
Field Detail
-
MBEAN_NAME
static final String MBEAN_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
dumpLocks
@MXBeanDescription("Take page locks dump.") String dumpLocks()
Take page locks dump.- Returns:
- String representation of page locks dump.
-
dumpLocksToLog
@MXBeanDescription("Take page locks dump and print it to console.") void dumpLocksToLog()
Take page locks dump and print it to console.
-
dumpLocksToFile
@MXBeanDescription("Take page locks dump and save to file.") String dumpLocksToFile()
Take page locks dump and save to file.- Returns:
- Absolute file path.
-
dumpLocksToFile
@MXBeanDescription("Take page locks dump and save to file for specific path.") String dumpLocksToFile(String path)
Take page locks dump and save to file for specific path.- Parameters:
path- Path to save file.- Returns:
- Absolute file path.
-
-