Uses of Interface
net.officefloor.server.stream.StreamBufferPool
-
-
Uses of StreamBufferPool in net.officefloor.server
Methods in net.officefloor.server that return StreamBufferPool Modifier and Type Method Description StreamBufferPool<java.nio.ByteBuffer>
RequestHandler. getStreamBufferPool()
Obtains theStreamBufferPool
for thsiRequestHandler
.StreamBufferPool<java.nio.ByteBuffer>
ResponseWriter. getStreamBufferPool()
Obtains theStreamBufferPool
.Methods in net.officefloor.server with parameters of type StreamBufferPool Modifier and Type Method Description void
ResponseHeaderWriter. write(StreamBuffer<java.nio.ByteBuffer> head, StreamBufferPool<java.nio.ByteBuffer> bufferPool)
Writes the header content.Constructors in net.officefloor.server with parameters of type StreamBufferPool Constructor Description SocketManager(int listenerCount, int socketReceiveBufferSize, int maxReadsOnSelect, int maxActiveSocketRequests, StreamBufferPool<java.nio.ByteBuffer> bufferPool, int socketSendBufferSize)
Instantiate. -
Uses of StreamBufferPool in net.officefloor.server.aws.sam
Constructors in net.officefloor.server.aws.sam with parameters of type StreamBufferPool Constructor Description SamHttpResponseWriter(StreamBufferPool<java.nio.ByteBuffer> bufferPool)
Instantiate. -
Uses of StreamBufferPool in net.officefloor.server.http
Methods in net.officefloor.server.http with parameters of type StreamBufferPool Modifier and Type Method Description <B> void
HttpHeaderName. write(StreamBuffer<B> head, StreamBufferPool<B> bufferPool)
Writes thisHttpHeaderName
to theStreamBuffer
.<B> void
HttpHeaderValue. write(StreamBuffer<B> head, StreamBufferPool<B> bufferPool)
Writes thisHttpHeaderValue
to theStreamBuffer
.<B> void
HttpStatus. write(StreamBuffer<B> head, StreamBufferPool<B> bufferPool)
Writes thisHttpStatus
to theStreamBuffer
.<B> void
HttpVersion. write(StreamBuffer<B> head, StreamBufferPool<B> bufferPool)
Writes thisHttpStatus
to theStreamBuffer
.<B> void
WritableHttpCookie. write(StreamBuffer<B> head, StreamBufferPool<B> bufferPool)
Writes this HTTP Cookie to theStreamBuffer
stream.<B> void
WritableHttpHeader. write(StreamBuffer<B> head, StreamBufferPool<B> bufferPool)
Writes thisHttpHeader
to theStreamBuffer
.<B> void
HttpException. writeHttpResponse(HttpVersion version, boolean isIncludeStackTrace, StreamBuffer<B> head, StreamBufferPool<B> bufferPool)
Writes the HTTP response for thisHttpException
. -
Uses of StreamBufferPool in net.officefloor.server.http.impl
Constructors in net.officefloor.server.http.impl with parameters of type StreamBufferPool Constructor Description ProcessAwareServerHttpConnectionManagedObject(HttpServerLocation serverLocation, boolean isSecure, java.util.function.Supplier<HttpMethod> methodSupplier, java.util.function.Supplier<java.lang.String> requestUriSupplier, HttpVersion version, NonMaterialisedHttpHeaders requestHeaders, ByteSequence requestEntity, HttpHeaderValue serverName, DateHttpHeaderClock dateHttpHeaderClock, boolean isIncludeStackTraceOnEscalation, HttpResponseWriter<B> writer, StreamBufferPool<B> bufferPool)
Instantiate. -
Uses of StreamBufferPool in net.officefloor.server.http.mock
Classes in net.officefloor.server.http.mock that implement StreamBufferPool Modifier and Type Class Description class
MockStreamBufferPool
MockStreamBufferPool
. -
Uses of StreamBufferPool in net.officefloor.server.http.netty
Classes in net.officefloor.server.http.netty that implement StreamBufferPool Modifier and Type Class Description class
NettyBufferPool
NettyStreamBufferPool
. -
Uses of StreamBufferPool in net.officefloor.server.http.servlet
Constructors in net.officefloor.server.http.servlet with parameters of type StreamBufferPool Constructor Description HttpServletHttpResponseWriter(javax.servlet.http.HttpServletResponse response, StreamBufferPool<java.nio.ByteBuffer> bufferPool)
Instantiate. -
Uses of StreamBufferPool in net.officefloor.server.stream
Methods in net.officefloor.server.stream with parameters of type StreamBufferPool Modifier and Type Method Description static <B> java.lang.Appendable
StreamBuffer. getAppendable(StreamBuffer<B> headBuffer, StreamBufferPool<B> bufferPool)
Obtains anAppendable
to write to theStreamBuffer
stream.static <B> StreamBuffer<B>
StreamBuffer. getWriteStreamBuffer(StreamBuffer<B> headBuffer, StreamBufferPool<B> bufferPool)
Obtains theStreamBuffer
to use for writing.static <B> void
StreamBuffer. write(byte[] bytes, int offset, int length, StreamBuffer<B> headBuffer, StreamBufferPool<B> bufferPool)
Writes the bytes to theStreamBuffer
stream.static <B> void
StreamBuffer. write(byte[] bytes, StreamBuffer<B> headBuffer, StreamBufferPool<B> bufferPool)
Writes all the bytes to theStreamBuffer
stream.static <B> void
StreamBuffer. write(long value, StreamBuffer<B> head, StreamBufferPool<B> bufferPool)
Writes a long value to theStreamBuffer
.static <B> void
StreamBuffer. write(java.lang.CharSequence characters, int offset, int length, StreamBuffer<B> headBuffer, StreamBufferPool<B> bufferPool)
Writes theCharSequence
to theStreamBuffer
stream.static <B> void
StreamBuffer. write(java.lang.CharSequence characters, StreamBuffer<B> headBuffer, StreamBufferPool<B> bufferPool)
Writes all theCharSequence
to theStreamBuffer
stream.static <B> StreamBuffer<B>
StreamBuffer. writeByte(byte character, StreamBuffer<B> writeBuffer, StreamBufferPool<B> bufferPool)
Writes a HTTP encoded character. -
Uses of StreamBufferPool in net.officefloor.server.stream.impl
Classes in net.officefloor.server.stream.impl that implement StreamBufferPool Modifier and Type Class Description class
AbstractStreamBufferPool<B>
AbstractStreamBufferPool
.class
ThreadLocalStreamBufferPool
Constructors in net.officefloor.server.stream.impl with parameters of type StreamBufferPool Constructor Description BufferPoolServerOutputStream(StreamBufferPool<B> bufferPool)
Instantiate.BufferPoolServerOutputStream(StreamBufferPool<B> bufferPool, CloseHandler closeHandler)
Instantiate.
-