MCPcopy Create free account
hub / github.com/apache/tomcat / stop

Method stop

java/org/apache/catalina/ha/deploy/FarmWarDeployer.java:197–210  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 6

removeClusterListenerMethod · 0.65
getClusterMethod · 0.65
clearMethod · 0.65
isInfoEnabledMethod · 0.65
infoMethod · 0.65
getStringMethod · 0.65

Tested by

no test coverage detected