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

Method start

webapps/examples/WEB-INF/classes/async/Stockticker.java:32–37  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30 protected volatile int ticknr = 0;
31
32 public synchronized void start() {
33 run = true;
34 ticker = new Thread(this);
35 ticker.setName("Ticker Thread");
36 ticker.start();
37 }
38
39 public synchronized void stop() {
40 // On context stop this can be called multiple times.

Callers 1

addTickListenerMethod · 0.95

Calls 2

setNameMethod · 0.65
startMethod · 0.65

Tested by

no test coverage detected