Package com.sleepycat.db
Interface PanicHandler
public interface PanicHandler
An interface specifying a function to be called if the database
environment panics.
-
Method Summary
Modifier and TypeMethodDescriptionvoidpanic(Environment environment, DatabaseException e) A function to be called if the database environment panics.
-
Method Details
-
panic
A function to be called if the database environment panics.Errors can occur in the Berkeley DB library where the only solution is to shut down the application and run recovery (for example, if Berkeley DB is unable to allocate heap memory). In such cases, the Berkeley DB methods will throw a
RunRecoveryException.It is often easier to simply exit the application when such errors occur rather than gracefully return up the stack. The panic callback function is a function called when
RunRecoveryExceptionis about to be thrown from a from a Berkeley DB method.- Parameters:
environment- The enclosing database environment handle.e- TheDatabaseExceptionthat would have been thrown to the calling method.
-