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

Method isFinished

java/org/apache/coyote/Request.java:959–963  ·  view source on GitHub ↗

Check if the request body has been fully read. @return true if finished

()

Source from the content-addressed store, hash-verified

957 * @return {@code true} if finished
958 */
959 public boolean isFinished() {
960 AtomicBoolean result = new AtomicBoolean(false);
961 action(ActionCode.REQUEST_BODY_FULLY_READ, result);
962 return result.get();
963 }
964
965 /**
966 * Check if relative redirects are supported.

Callers 1

setReadListenerMethod · 0.95

Calls 2

actionMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected