| | |
| | | super("Internal Connection Handler Thread"); |
| | | |
| | | assert debugConstructor(CLASS_NAME); |
| | | |
| | | // Since we can't guarantee that the initializeConnectionHandler method will |
| | | // always be called for this method, we'll do the necessary "initialization" |
| | | // here. |
| | | connectionList = new LinkedList<ClientConnection>(); |
| | | } |
| | | |
| | | |
| | |
| | | { |
| | | assert debugEnter(CLASS_NAME, "initializeConnectionHandler", |
| | | String.valueOf(configEntry)); |
| | | |
| | | |
| | | // Create an empty connection list that will be returned by the |
| | | // getClientConnections method. |
| | | connectionList = new LinkedList<ClientConnection>(); |
| | | } |
| | | |
| | | |