()
| 195 | * @see org.apache.catalina.ha.ClusterDeployer#stop() |
| 196 | */ |
| 197 | @Override |
| 198 | public void stop() throws LifecycleException { |
| 199 | started = false; |
| 200 | getCluster().removeClusterListener(this); |
| 201 | count = 0; |
| 202 | if (watcher != null) { |
| 203 | watcher.clear(); |
| 204 | watcher = null; |
| 205 | |
| 206 | } |
| 207 | if (log.isInfoEnabled()) { |
| 208 | log.info(sm.getString("farmWarDeployer.stopped")); |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * Callback from the cluster, when a message is received, The cluster will broadcast it invoking the messageReceived |
nothing calls this directly
no test coverage detected