| | |
| | | } |
| | | |
| | | |
| | | // Determine whether or not we should start the connection handlers. |
| | | String disableProperty = |
| | | System.getProperty(PROPERTY_DISABLE_CONNECTION_HANDLERS); |
| | | boolean startConnectionHandlers = |
| | | ((disableProperty == null) || |
| | | (! disableProperty.equalsIgnoreCase("true"))); |
| | | |
| | | |
| | | // Initialize all the schema elements. |
| | | initializeSchema(); |
| | | |
| | |
| | | |
| | | |
| | | // Initialize all the connection handlers. |
| | | initializeConnectionHandlers(); |
| | | if (startConnectionHandlers) |
| | | { |
| | | initializeConnectionHandlers(); |
| | | } |
| | | |
| | | |
| | | // Initialize all the monitor providers. |
| | |
| | | |
| | | // At this point, we should be ready to go. Start all the connection |
| | | // handlers. |
| | | for (ConnectionHandler c : connectionHandlers) |
| | | if (startConnectionHandlers) |
| | | { |
| | | c.start(); |
| | | for (ConnectionHandler c : connectionHandlers) |
| | | { |
| | | c.start(); |
| | | } |
| | | } |
| | | |
| | | |