~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/BasicAsyncResponseConsumer.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:
31
31
import org.apache.http.ContentTooLongException;
32
32
import org.apache.http.HttpEntity;
33
33
import org.apache.http.HttpResponse;
34
 
import org.apache.http.annotation.ThreadSafe;
35
34
import org.apache.http.entity.ContentType;
36
35
import org.apache.http.nio.ContentDecoder;
37
36
import org.apache.http.nio.IOControl;
48
47
 *
49
48
 * @since 4.2
50
49
 */
51
 
@ThreadSafe
52
50
public class BasicAsyncResponseConsumer extends AbstractAsyncResponseConsumer<HttpResponse> {
53
51
 
54
52
    private volatile HttpResponse response;