Package org.simpleframework.http.message

Examples of org.simpleframework.http.message.EntityConsumer


    * @param allocator this is the allocator used to buffer data
    * @param tracker this is the tracker used to create sessions
    * @param channel this is the channel used to read the data
    */
   public Collector(Allocator allocator, Channel channel) {
      this.entity = new EntityConsumer(allocator, channel);
      this.timer = new Timer(MILLISECONDS);
      this.cursor = channel.getCursor();    
      this.trace = channel.getTrace();
      this.channel = channel;
   }
View Full Code Here

TOP

Related Classes of org.simpleframework.http.message.EntityConsumer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.