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

Method end

java/org/apache/coyote/http2/Stream.java:1142–1152  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1140 }
1141
1142 @Override
1143 public final void end() throws IOException {
1144 if (reset != null) {
1145 throw new CloseNowException(reset);
1146 }
1147 if (!closed) {
1148 closed = true;
1149 flush(true);
1150 writeTrailers();
1151 }
1152 }
1153
1154 /**
1155 * @return <code>true</code> if it is certain that the associated response has no body.

Callers

nothing calls this directly

Calls 2

flushMethod · 0.95
writeTrailersMethod · 0.80

Tested by

no test coverage detected