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

Method setBufferSize

java/org/apache/catalina/connector/Response.java:605–614  ·  view source on GitHub ↗
(int size)

Source from the content-addressed store, hash-verified

603
604
605 @Override
606 public void setBufferSize(int size) {
607
608 if (isCommitted() || !outputBuffer.isNew()) {
609 throw new IllegalStateException(sm.getString("coyoteResponse.setBufferSize.ise"));
610 }
611
612 outputBuffer.setBufferSize(size);
613
614 }
615
616
617 @Override

Callers

nothing calls this directly

Calls 4

isCommittedMethod · 0.95
isNewMethod · 0.65
getStringMethod · 0.65
setBufferSizeMethod · 0.65

Tested by

no test coverage detected