src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/AsyncSSLConnection.java
branchhttp-client-branch
changeset 55892 9f345a976249
parent 55799 c71f52f48d97
child 55909 583695a0ed6a
equal deleted inserted replaced
55891:050803da27e5 55892:9f345a976249
    88 
    88 
    89     @Override
    89     @Override
    90     ConnectionPool.CacheKey cacheKey() {
    90     ConnectionPool.CacheKey cacheKey() {
    91         return ConnectionPool.cacheKey(address, null);
    91         return ConnectionPool.cacheKey(address, null);
    92     }
    92     }
    93 
    93     
    94     @Override
       
    95     public void closeExceptionally(Throwable cause) {
       
    96         debug.log(Level.DEBUG, () -> "closing: " + cause);
       
    97         plainConnection.close();
       
    98     }
       
    99 
       
   100     @Override
    94     @Override
   101     public void close() {
    95     public void close() {
   102         plainConnection.close();
    96         plainConnection.close();
   103     }
    97     }
   104 
    98