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

Method remove

java/org/apache/catalina/session/DataSourceStore.java:440–450  ·  view source on GitHub ↗
(String id)

Source from the content-addressed store, hash-verified

438 }
439
440 @Override
441 public void remove(String id) throws IOException {
442 withRetry(conn -> {
443 remove(id, conn);
444 return null;
445 });
446
447 if (manager.getContext().getLogger().isTraceEnabled()) {
448 manager.getContext().getLogger().trace(sm.getString("dataSourceStore.removing", id, sessionTable));
449 }
450 }
451
452 /**
453 * Remove the Session with the specified session identifier from this Store, if present. If no such Session is

Callers 1

saveMethod · 0.95

Calls 10

withRetryMethod · 0.95
getNameMethod · 0.95
isTraceEnabledMethod · 0.65
getLoggerMethod · 0.65
getContextMethod · 0.65
traceMethod · 0.65
getStringMethod · 0.65
executeMethod · 0.65
prepareStatementMethod · 0.45
setStringMethod · 0.45

Tested by

no test coverage detected