public interface MessageHandler
| Modifier and Type | Method and Description | 
|---|---|
| void | message(Environment environment,
       java.lang.String message)A callback function to be called to display informational messages. | 
void message(Environment environment, java.lang.String message)
    There are interfaces in the Berkeley DB library which either directly
    output informational messages or statistical information, or configure
    the library to output such messages when performing other operations,
    EnvironmentConfig.setVerboseDeadlock for example.
    
    The EnvironmentConfig.setMessageHandler and
    DatabaseConfig.setMessageHandler methods are used to
    display these messages for the application.
    
environment - The enclosing database environment handle.
    message - An informational message string.Copyright (c) 2004,2014 Oracle. All rights reserved.