Uses of Interface
org.simpleframework.http.core.Collector

Packages that use Collector
Package
Description
 
  • Uses of Collector in org.simpleframework.http.core

    Classes in org.simpleframework.http.core that implement Collector
    Modifier and Type
    Class
    Description
    (package private) class 
    The RequestCollector object is used to collect all of the data used to form a request entity.
    Modifier and Type
    Field
    Description
    private final Collector
    RequestReader.collector
    This is the collector used to consume the entity bytes.
    Methods in org.simpleframework.http.core with parameters of type Collector
    Modifier and Type
    Method
    Description
    void
    ContainerController.ready(Collector collector)
    The ready event is used when a full HTTP entity has been collected from the underlying transport.
    void
    Controller.ready(Collector collector)
    The ready event is used when a full HTTP entity has been collected from the underlying transport.
    void
    ContainerController.select(Collector collector)
    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
    Controller.select(Collector collector)
    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
    ContainerController.start(Collector collector)
    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
    Controller.start(Collector collector)
    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 Collector
    Modifier
    Constructor
    Description
     
    RequestReader(Controller controller, Collector collector)
    Constructor for the RequestReader object.