Searched defs:replacementStream (Results 1 - 2 of 2) sorted by relevance

/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DFaultRecoveringOutputStream.java31 * <p>Subclasses must override {@link #replacementStream} which will request a
117 OutputStream replacementStream = null;
119 replacementStream = replacementStream(e);
120 if (replacementStream == null) {
123 replaceStream(replacementStream);
127 Util.closeQuietly(replacementStream);
141 * Replaces the current output stream with {@code replacementStream}, writing
144 public final void replaceStream(OutputStream replacementStream) throws IOException { argument
148 if (this.out == replacementStream) {
162 protected abstract OutputStream replacementStream(IOException e) throws IOException; method in class:FaultRecoveringOutputStream
[all...]
/external/okhttp/src/test/java/com/squareup/okhttp/internal/
H A DFaultRecoveringOutputStreamTest.java219 @Override protected OutputStream replacementStream(IOException e) { method in class:FaultRecoveringOutputStreamTest.TestFaultRecoveringOutputStream

Completed in 120 milliseconds