Uses of Interface
org.simpleframework.http.message.BodyConsumer
-
Packages that use BodyConsumer Package Description org.simpleframework.http.message -
-
Uses of BodyConsumer in org.simpleframework.http.message
Classes in org.simpleframework.http.message that implement BodyConsumer Modifier and Type Class Description classChunkedConsumerTheChunkedConsumeris reads an decodes a stream using the chunked transfer coding.(package private) classContentConsumerTheContentConsumerobject represents a consumer for a multipart body part.classEmptyConsumerTheEmptyConsumerobject is used to represent a body of zero length.classFileUploadConsumerTheFileUploadConsumerobject is used to consume a list of parts encoded in the multipart format.classFixedLengthConsumerTheFixedLengthConsumerobject reads a fixed number of bytes from a cursor.(package private) classPartBodyConsumerThePartBodyConsumerobject is used to consume a part the contents of a multipart body.(package private) classPartSeriesConsumerThePartSeriesConsumerobject is used to consume a list of parts encoded in the multipart format.classUpdateConsumerTheUpdateConsumerobject is used to create a consumer that is used to consume and process large bodies.Fields in org.simpleframework.http.message declared as BodyConsumer Modifier and Type Field Description protected BodyConsumerEntityConsumer. bodyThis is used to consume the body for the request entity.private BodyConsumerPartConsumer. bodyThis is used to consume the body data from the part.private BodyConsumerFileUploadConsumer. consumerThis is used to read and parse the contents of the part series.Methods in org.simpleframework.http.message that return BodyConsumer Modifier and Type Method Description private BodyConsumerPartConsumer. getConsumer()This is used to create a new body consumer used to consume the part body from for the list.BodyConsumerConsumerFactory. getInstance()This method is used to create a body consumer to read the body from the pipeline.BodyConsumerConsumerFactory. getInstance(long length)This method is used to create a body consumer to read the body from the pipeline.BodyConsumerPartFactory. getInstance(PartSeries series, byte[] boundary)This method is used to create the consumer given the list and boundary for the part.
-