Uses of Interface
org.jboss.netty.handler.codec.http.HttpChunk
-
Packages that use HttpChunk Package Description org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.org.jboss.netty.handler.codec.http.multipart HTTP multipart support.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol. -
-
Uses of HttpChunk in org.jboss.netty.handler.codec.http
Subinterfaces of HttpChunk in org.jboss.netty.handler.codec.http Modifier and Type Interface Description interface
HttpChunkTrailer
The lastHttpChunk
which has trailing headers.Classes in org.jboss.netty.handler.codec.http that implement HttpChunk Modifier and Type Class Description class
DefaultHttpChunk
The defaultHttpChunk
implementation.class
DefaultHttpChunkTrailer
The defaultHttpChunkTrailer
implementation. -
Uses of HttpChunk in org.jboss.netty.handler.codec.http.multipart
Methods in org.jboss.netty.handler.codec.http.multipart that return HttpChunk Modifier and Type Method Description private HttpChunk
HttpPostRequestEncoder. encodeNextChunkMultipart(int sizeleft)
From the current context (currentBuffer and currentData), returns the next HttpChunk (if possible) trying to get sizeleft bytes more into the currentBuffer.private HttpChunk
HttpPostRequestEncoder. encodeNextChunkUrlEncoded(int sizeleft)
From the current context (currentBuffer and currentData), returns the next HttpChunk (if possible) trying to get sizeleft bytes more into the currentBuffer.HttpChunk
HttpPostRequestEncoder. nextChunk()
Returns the next available HttpChunk.Methods in org.jboss.netty.handler.codec.http.multipart with parameters of type HttpChunk Modifier and Type Method Description void
HttpPostMultipartRequestDecoder. offer(HttpChunk chunk)
void
HttpPostRequestDecoder. offer(HttpChunk chunk)
Initialized the internals from a new chunkvoid
HttpPostStandardRequestDecoder. offer(HttpChunk chunk)
void
InterfaceHttpPostRequestDecoder. offer(HttpChunk chunk)
Initialized the internals from a new chunk -
Uses of HttpChunk in org.jboss.netty.handler.codec.spdy
Methods in org.jboss.netty.handler.codec.spdy with parameters of type HttpChunk Modifier and Type Method Description protected void
SpdyHttpEncoder. writeChunk(ChannelHandlerContext ctx, ChannelFuture future, int streamId, HttpChunk chunk, java.net.SocketAddress remoteAddress)
Writes an HTTP chunk downstream as one or more SPDY frames.
-