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

Method getStream

java/org/apache/catalina/connector/Request.java:748–753  ·  view source on GitHub ↗

Return the input stream associated with this request, creating it if necessary. @return the input stream

()

Source from the content-addressed store, hash-verified

746 * @return the input stream
747 */
748 public InputStream getStream() {
749 if (inputStream == null) {
750 inputStream = new CoyoteInputStream(inputBuffer);
751 }
752 return inputStream;
753 }
754
755 /**
756 * URI byte to char converter.

Callers 2

readPostBodyFullyMethod · 0.95
readChunkedPostBodyMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected