Uses of Interface
org.simpleframework.http.core.BodyEncoder
-
Packages that use BodyEncoder Package Description org.simpleframework.http.core -
-
Uses of BodyEncoder in org.simpleframework.http.core
Classes in org.simpleframework.http.core that implement BodyEncoder Modifier and Type Class Description (package private) class
ChunkedEncoder
TheChunkedEncoder
object is used to encode data in the chunked encoding format.(package private) class
CloseEncoder
TheCloseEncoder
is used to close a connection once all of the content has been produced.(package private) class
EmptyEncoder
TheEmptyEncoder
object is a producer used if there is not response body to be delivered.(package private) class
FixedLengthEncoder
TheFixedLengthEncoder
object produces content without any encoding, but limited to a fixed number of bytes.Fields in org.simpleframework.http.core declared as BodyEncoder Modifier and Type Field Description private BodyEncoder
ResponseEncoder. encoder
Once the header is committed this is used to produce data.Methods in org.simpleframework.http.core that return BodyEncoder Modifier and Type Method Description BodyEncoder
BodyEncoderFactory. getInstance()
This is used to create an aBodyEncoder
object that can be used to encode content according to the HTTP header.private BodyEncoder
BodyEncoderFactory. getInstance(boolean chunkable)
This is used to create an aBodyEncoder
object that can be used to encode content according to the HTTP header.
-