Uses of Class
org.eclipse.jetty.server.HttpInput.Content
-
Packages that use HttpInput.Content Package Description org.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.handler Jetty Server : Core Handler APIorg.eclipse.jetty.server.handler.gzip Jetty GZIP Handler -
-
Uses of HttpInput.Content in org.eclipse.jetty.server
Subclasses of HttpInput.Content in org.eclipse.jetty.server Modifier and Type Class Description private class
HttpConnection.Content
static class
HttpInput.EofContent
static class
HttpInput.SentinelContent
A Sentinel Content, which has zero length content but indicates some other event in the input stream (eg EOF)Fields in org.eclipse.jetty.server declared as HttpInput.Content Modifier and Type Field Description private HttpInput.Content
HttpInput. _content
private HttpInput.Content
HttpInput. _intercepted
(package private) static HttpInput.Content
HttpInput. EARLY_EOF_CONTENT
(package private) static HttpInput.Content
HttpInput. EOF_CONTENT
Fields in org.eclipse.jetty.server with type parameters of type HttpInput.Content Modifier and Type Field Description private java.util.Deque<HttpInput.Content>
HttpInput. _inputQ
Methods in org.eclipse.jetty.server that return HttpInput.Content Modifier and Type Method Description (package private) HttpInput.Content
HttpConnection. newContent(java.nio.ByteBuffer c)
protected HttpInput.Content
HttpInput. nextContent()
Get the next content from the inputQ, callingHttpInput.produceContent()
if need be.protected HttpInput.Content
HttpInput. nextInterceptedContent()
Poll the inputQ for Content or EOF.protected HttpInput.Content
HttpInput. nextNonSentinelContent()
Poll the inputQ for Content.protected HttpInput.Content
HttpInput. produceNextContent()
Get the next readable from the inputQ, callingHttpInput.produceContent()
if need be.HttpInput.Content
HttpInput.ChainedInterceptor. readFrom(HttpInput.Content content)
HttpInput.Content
HttpInput.Interceptor. readFrom(HttpInput.Content content)
Methods in org.eclipse.jetty.server with parameters of type HttpInput.Content Modifier and Type Method Description boolean
HttpInput. addContent(HttpInput.Content content)
Adds some content to this input stream.private void
HttpInput. consume(HttpInput.Content content)
private java.lang.Throwable
HttpInput. fail(HttpInput.Content content, java.lang.Throwable failure)
protected int
HttpInput. get(HttpInput.Content content, byte[] buffer, int offset, int length)
Copies the given content into the given byte buffer.boolean
HttpChannel. onContent(HttpInput.Content content)
HttpInput.Content
HttpInput.ChainedInterceptor. readFrom(HttpInput.Content content)
HttpInput.Content
HttpInput.Interceptor. readFrom(HttpInput.Content content)
-
Uses of HttpInput.Content in org.eclipse.jetty.server.handler
Methods in org.eclipse.jetty.server.handler that return HttpInput.Content Modifier and Type Method Description HttpInput.Content
SizeLimitHandler.LimitInterceptor. readFrom(HttpInput.Content content)
Methods in org.eclipse.jetty.server.handler with parameters of type HttpInput.Content Modifier and Type Method Description HttpInput.Content
SizeLimitHandler.LimitInterceptor. readFrom(HttpInput.Content content)
-
Uses of HttpInput.Content in org.eclipse.jetty.server.handler.gzip
Methods in org.eclipse.jetty.server.handler.gzip that return HttpInput.Content Modifier and Type Method Description HttpInput.Content
GzipHttpInputInterceptor. readFrom(HttpInput.Content content)
Methods in org.eclipse.jetty.server.handler.gzip with parameters of type HttpInput.Content Modifier and Type Method Description HttpInput.Content
GzipHttpInputInterceptor. readFrom(HttpInput.Content content)
-