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) classTheRequestCollectorobject 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 CollectorRequestReader.collectorThis is the collector used to consume the entity bytes.Methods in org.simpleframework.http.core with parameters of type CollectorModifier and TypeMethodDescriptionvoidThe ready event is used when a full HTTP entity has been collected from the underlying transport.voidThe ready event is used when a full HTTP entity has been collected from the underlying transport.voidThe 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.voidThe 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.voidThe 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.voidThe 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 theRequestReaderobject.