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

Method isTrailerFieldsReady

java/org/apache/coyote/Request.java:328–332  ·  view source on GitHub ↗

Check if trailer fields are ready. @return true if trailer fields are ready

()

Source from the content-addressed store, hash-verified

326 * @return {@code true} if trailer fields are ready
327 */
328 public boolean isTrailerFieldsReady() {
329 AtomicBoolean result = new AtomicBoolean(false);
330 action(ActionCode.IS_TRAILER_FIELDS_READY, result);
331 return result.get();
332 }
333
334
335 /**

Callers

nothing calls this directly

Calls 2

actionMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected