Java Code Examples for okhttp3.internal.Util#discard()

The following examples show how to use okhttp3.internal.Util#discard() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Http1Codec.java    From styT with Apache License 2.0 5 votes vote down vote up
@Override public void close() throws IOException {
  if (closed) return;

  if (bytesRemaining != 0 && !Util.discard(this, DISCARD_STREAM_TIMEOUT_MILLIS, MILLISECONDS)) {
    endOfInput(false);
  }

  closed = true;
}
 
Example 2
Source File: Http1Codec.java    From styT with Apache License 2.0 5 votes vote down vote up
@Override public void close() throws IOException {
  if (closed) return;
  if (hasMoreChunks && !Util.discard(this, DISCARD_STREAM_TIMEOUT_MILLIS, MILLISECONDS)) {
    endOfInput(false);
  }
  closed = true;
}
 
Example 3
Source File: Http1Codec.java    From AndroidProjects with MIT License 5 votes vote down vote up
@Override public void close() throws IOException {
  if (closed) return;

  if (bytesRemaining != 0 && !Util.discard(this, DISCARD_STREAM_TIMEOUT_MILLIS, MILLISECONDS)) {
    endOfInput(false);
  }

  closed = true;
}
 
Example 4
Source File: Http1Codec.java    From AndroidProjects with MIT License 5 votes vote down vote up
@Override public void close() throws IOException {
  if (closed) return;
  if (hasMoreChunks && !Util.discard(this, DISCARD_STREAM_TIMEOUT_MILLIS, MILLISECONDS)) {
    endOfInput(false);
  }
  closed = true;
}