Uses of Class
org.objectweb.howl.log.LogConfigurationException
Packages that use LogConfigurationException
Package
Description
Core functionality for any log file implementation.
Provides public logger classes customized for use with XA Transaction
Managers.
-
Uses of LogConfigurationException in org.objectweb.howl.log
Methods in org.objectweb.howl.log that throw LogConfigurationExceptionModifier and TypeMethodDescriptionRead a specific record from the log.private booleanConfiguration.getBoolean(String key, boolean val) called by parseProperties to obtain a boolean configuration property and optionally display the configured value.(package private) voidLogFileManager.init(LogBufferManager bmgr) validate LogFiles and set member variables.(package private) LogFileopen the file and get the associated nio FileChannel for the file.(package private) voidLogFileManager.open()open pool of LogFile(s).voidLogger.open()open Log files and perform necessart initialization.private voidConfiguration.parseProperties()initialize member variables from property file.(package private) voidLogBufferManager.replay(ReplayListener listener, long mark, boolean replayCtrlRecords) Replays log from requested mark forward to end of log.voidLogger.replay(ReplayListener listener) Replays log from the active mark forward to the current position.voidLogger.replay(ReplayListener listener, long mark) Replays log from a specified mark forward to the current mark.protected voidLogger.replay(ReplayListener listener, long mark, boolean replayCtrlRecords) Allows sub-classes of Logger to replay control records.voidConfiguration.setBufferSize(int bufferSize) voidConfiguration.setLogFileMode(String logFileMode) voidConfiguration.setMaxBuffers(int maxBuffers) voidConfiguration.setMinBuffers(int minBuffers) (package private) voidLogFileManager.validateFileHeader(LogBuffer lb) Compares values in log file header record with current configuration.Constructors in org.objectweb.howl.log that throw LogConfigurationExceptionModifierConstructorDescriptionConfiguration(File propertyFile) Construct a Configuration object using a Properties file specified by the caller.Configuration(Properties prop) Construct a Configuration object using a Properties object supplied by the caller. -
Uses of LogConfigurationException in org.objectweb.howl.log.xa
Methods in org.objectweb.howl.log.xa that throw LogConfigurationExceptionModifier and TypeMethodDescriptionvoidXALogger.open(ReplayListener listener) calls super.open() to perform standard open functionality then replays the log to rebuild the activeTx table.voidXALogger.replay(ReplayListener listener) Wrapp Logger#replay(ReplayListener) so we can intercept onRecord() notifications to process XACOMMIT and XACOMMITMOVED records.voidXALogger.replay(ReplayListener listener, long key) Wrapp Logger#replay(ReplayListener, long) so we can intercept onRecord() notifications to process XACOMMIT and XACOMMITMOVED records.