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

Method isAppCommitted

java/org/apache/catalina/connector/Response.java:272–275  ·  view source on GitHub ↗

Application commit flag accessor. @return true if the application has committed the response

()

Source from the content-addressed store, hash-verified

270 * @return <code>true</code> if the application has committed the response
271 */
272 public boolean isAppCommitted() {
273 return this.appCommitted || isCommitted() || isSuspended() ||
274 ((getContentLength() > 0) && (getContentWritten() >= getContentLength()));
275 }
276
277
278 /**

Callers 1

isCommittedMethod · 0.45

Calls 4

isCommittedMethod · 0.95
isSuspendedMethod · 0.95
getContentLengthMethod · 0.95
getContentWrittenMethod · 0.95

Tested by

no test coverage detected