MCPcopy Index your code
hub / github.com/apache/tomcat / start

Method start

java/org/apache/coyote/AbstractProtocol.java:967–976  ·  view source on GitHub ↗

Starts the protocol handler. @throws Exception if start fails

()

Source from the content-addressed store, hash-verified

965 * @throws Exception if start fails
966 */
967 @Override
968 public void start() throws Exception {
969 if (getLog().isInfoEnabled()) {
970 getLog().info(sm.getString("abstractProtocolHandler.start", getName()));
971 logPortOffset();
972 }
973
974 endpoint.start();
975 monitorFuture = getUtilityExecutor().scheduleWithFixedDelay(this::startAsyncTimeout, 0, 60, TimeUnit.SECONDS);
976 }
977
978
979 /**

Callers

nothing calls this directly

Calls 9

getLogMethod · 0.95
getNameMethod · 0.95
logPortOffsetMethod · 0.95
getUtilityExecutorMethod · 0.95
isInfoEnabledMethod · 0.65
infoMethod · 0.65
getStringMethod · 0.65
startMethod · 0.65

Tested by

no test coverage detected