Uses of Interface
org.simpleframework.transport.ByteWriter
Packages that use ByteWriter
Package
Description
-
Uses of ByteWriter in org.simpleframework.http.core
Fields in org.simpleframework.http.core declared as ByteWriterModifier and TypeFieldDescriptionprivate ByteWriterResponseEntity.senderThis is the sender object used to deliver to response data.private final ByteWriterBodyEncoderFactory.writerThis is the underlying sender used to deliver the raw data.private ByteWriterChunkedEncoder.writerThis is the underlying writer used to deliver the encoded data.private final ByteWriterCloseEncoder.writerThis is the underlying writer used to deliver the raw data.private final ByteWriterEmptyEncoder.writerThis is the writer that is passed to the monitor when ready.private ByteWriterFixedLengthEncoder.writerThis is the underlying writer used to deliver the raw data.Methods in org.simpleframework.http.core with parameters of type ByteWriterModifier and TypeMethodDescriptionvoidBodyObserver.close(ByteWriter writer) This is used to close the underlying transport.voidResponseObserver.close(ByteWriter writer) This is used to close the underlying transport.voidBodyObserver.commit(ByteWriter writer) This is used to notify the monitor that the HTTP response is committed and that the header can no longer be changed.voidResponseObserver.commit(ByteWriter writer) This is used to notify the observer that the HTTP response is committed and that the header can no longer be changed.voidBodyObserver.error(ByteWriter writer) This is used when there is an error sending the response.voidResponseObserver.error(ByteWriter writer) This is used when there is an error sending the response.private voidResponseObserver.fail(ByteWriter writer) This is used to purge the writer so that it closes the socket ensuring there is no connection leak on shutdown.voidBodyObserver.ready(ByteWriter writer) This is used when the response has been sent correctly and the connection supports persisted HTTP.voidResponseObserver.ready(ByteWriter writer) This is used when the response has been sent correctly and the connection supports persisted HTTP.Constructors in org.simpleframework.http.core with parameters of type ByteWriterModifierConstructorDescriptionChunkedEncoder(BodyObserver observer, ByteWriter writer) Constructor for theChunkedEncoderobject.CloseEncoder(BodyObserver observer, ByteWriter writer) Constructor for theCloseEncoderobject.EmptyEncoder(BodyObserver observer, ByteWriter writer) Constructor for theEmptyEncoderobject.FixedLengthEncoder(BodyObserver observer, ByteWriter writer, long limit) Constructor for theFixedLengthEncoderobject. -
Uses of ByteWriter in org.simpleframework.http.message
Fields in org.simpleframework.http.message declared as ByteWriterModifier and TypeFieldDescriptionprivate final ByteWriterContinueDispatcher.writerThis is the writer that is used to deliver the continue. -
Uses of ByteWriter in org.simpleframework.http.socket.service
Fields in org.simpleframework.http.socket.service declared as ByteWriterModifier and TypeFieldDescriptionprivate final ByteWriterFrameConnection.writerThis is the sender used to send frames over the channel.private final ByteWriterOutputBarrier.writerThis is the underlying sender used to send the frames.private final ByteWriterResponseBuilder.writerThis is the sender used to send the WebSocket response. -
Uses of ByteWriter in org.simpleframework.transport
Classes in org.simpleframework.transport that implement ByteWriterModifier and TypeClassDescriptionclassTheTransportWriterobject is used to write bytes to and underlying transport.Fields in org.simpleframework.transport declared as ByteWriterModifier and TypeFieldDescriptionprivate final ByteWriterTransportChannel.writerThis is used to provide a blocking means for sending data.Methods in org.simpleframework.transport that return ByteWriter