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

Method threadStop

java/org/apache/catalina/core/ContainerBase.java:1100–1105  ·  view source on GitHub ↗

Stop the background thread that is periodically checking for session timeouts.

()

Source from the content-addressed store, hash-verified

1098 * Stop the background thread that is periodically checking for session timeouts.
1099 */
1100 protected void threadStop() {
1101 if (backgroundProcessorFuture != null) {
1102 backgroundProcessorFuture.cancel(true);
1103 backgroundProcessorFuture = null;
1104 }
1105 }
1106
1107
1108 @Override

Callers 2

stopInternalMethod · 0.95
stopInternalMethod · 0.80

Calls 1

cancelMethod · 0.45

Tested by

no test coverage detected