src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/PlainTunnelingConnection.java
branchhttp-client-branch
changeset 55795 074bb951658a
parent 55764 34d7cc00f87a
child 55799 c71f52f48d97
equal deleted inserted replaced
55794:08e58c1c75fb 55795:074bb951658a
   110     ConnectionPool.CacheKey cacheKey() {
   110     ConnectionPool.CacheKey cacheKey() {
   111         return new ConnectionPool.CacheKey(null, proxyAddr);
   111         return new ConnectionPool.CacheKey(null, proxyAddr);
   112     }
   112     }
   113 
   113 
   114     @Override
   114     @Override
   115     public void writeAsync(ByteBufferReference[] buffers) throws IOException {
       
   116         delegate.writeAsync(buffers);
       
   117     }
       
   118 
       
   119     @Override
       
   120     public void writeAsyncUnordered(ByteBufferReference[] buffers) throws IOException {
       
   121         delegate.writeAsyncUnordered(buffers);
       
   122     }
       
   123 
       
   124     @Override
       
   125     public void flushAsync() throws IOException {
       
   126         delegate.flushAsync();
       
   127     }
       
   128 
       
   129     @Override
       
   130     public void close() {
   115     public void close() {
   131         delegate.close();
   116         delegate.close();
   132         connected = false;
   117         connected = false;
   133     }
   118     }
   134 
   119