Uses of Interface
org.simpleframework.http.core.Collector
Packages that use Collector
-
Uses of Collector in org.simpleframework.http.core
Classes in org.simpleframework.http.core that implement CollectorModifier and TypeClassDescription(package private) class
TheRequestCollector
object is used to collect all of the data used to form a request entity.Fields in org.simpleframework.http.core declared as CollectorModifier and TypeFieldDescriptionprivate final Collector
RequestReader.collector
This is the collector used to consume the entity bytes.Methods in org.simpleframework.http.core with parameters of type CollectorModifier and TypeMethodDescriptionvoid
The ready event is used when a full HTTP entity has been collected from the underlying transport.void
The ready event is used when a full HTTP entity has been collected from the underlying transport.void
The select event is used to register the connected socket with a Java NIO selector which can efficiently determine when there are bytes ready to read from the socket.void
The select event is used to register the connected socket with a Java NIO selector which can efficiently determine when there are bytes ready to read from the socket.void
The start event is used to immediately consume bytes form the underlying transport, it does not require a select to check if the socket is read ready which improves performance.void
The start event is used to immediately consume bytes form the underlying transport, it does not require a select to check if the socket is read ready which improves performance.Constructors in org.simpleframework.http.core with parameters of type CollectorModifierConstructorDescriptionRequestReader
(Controller controller, Collector collector) Constructor for theRequestReader
object.