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

Method setCommitted

java/org/apache/coyote/Response.java:302–307  ·  view source on GitHub ↗

Set the committed flag. @param v The committed flag value

(boolean v)

Source from the content-addressed store, hash-verified

300 * @param v The committed flag value
301 */
302 public void setCommitted(boolean v) {
303 if (v && !this.committed) {
304 this.commitTimeNanos = System.nanoTime();
305 }
306 this.committed = v;
307 }
308
309 /**
310 * Return the time the response was committed (based on System.currentTimeMillis).

Callers 4

commitMethod · 0.95
commitMethod · 0.80
prepareResponseMethod · 0.80
prepareResponseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected