~ubuntu-branches/ubuntu/vivid/httpcomponents-core/vivid

« back to all changes in this revision

Viewing changes to httpcore-nio/src/main/java/org/apache/http/nio/protocol/BasicAsyncRequestConsumer.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-10-25 23:01:10 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20141025230110-lhr341pbqk6l2loc
Tags: 4.3.3-1
* New upstream release
* Ignore the apache-rat-plugin
* Standards-Version updated to 3.9.6 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
import org.apache.http.HttpEntity;
33
33
import org.apache.http.HttpEntityEnclosingRequest;
34
34
import org.apache.http.HttpRequest;
35
 
import org.apache.http.annotation.ThreadSafe;
36
35
import org.apache.http.entity.ContentType;
37
36
import org.apache.http.nio.ContentDecoder;
38
37
import org.apache.http.nio.IOControl;
49
48
 *
50
49
 * @since 4.2
51
50
 */
52
 
@ThreadSafe
53
51
public class BasicAsyncRequestConsumer extends AbstractAsyncRequestConsumer<HttpRequest> {
54
52
 
55
53
    private volatile HttpRequest request;