public interface PanicHandler
Modifier and Type | Method | Description |
---|---|---|
void |
panic(Environment environment,
DatabaseException e) |
A function to be called if the database environment panics.
|
void panic(Environment environment, DatabaseException e)
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 RunRecoveryException
is about to be thrown from a from a
Berkeley DB method.
environment
- The enclosing database environment handle.
e
- The DatabaseException
that would have been thrown to
the calling method.Copyright (c) 1996, 2020 Oracle and/or its affiliates. All rights reserved.