()
| 86 | } |
| 87 | |
| 88 | public void startReconnect() throws IllegalStateException { |
| 89 | if (active) { |
| 90 | return; |
| 91 | } |
| 92 | stopReconnect(); |
| 93 | active = true; |
| 94 | t = new Timer(); |
| 95 | t.schedule(this, 0, 250); |
| 96 | } |
| 97 | |
| 98 | public void reconnect() { |
| 99 | stopReconnect(); |
no test coverage detected