File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed 
google-http-client/src/main/java/com/google/api/client/http Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 2121/** 
2222 * Thread-safe abstract HTTP transport. 
2323 * 
24-  * <p>Implementation is thread-safe, and sub-classes  must be thread-safe. For maximum efficiency, 
24+  * <p>Implementation is thread-safe, and subclasses  must be thread-safe. For maximum efficiency, 
2525 * applications should use a single globally-shared instance of the HTTP transport. 
2626 * 
2727 * <p>The recommended concrete implementation HTTP transport library to use depends on what 
@@ -158,4 +158,14 @@ public boolean isMtls() {
158158   * @since 1.4 
159159   */ 
160160  public  void  shutdown () throws  IOException  {}
161+ 
162+   /** 
163+    * Returns whether the transport is shutdown or not. 
164+    * 
165+    * @return true if the transport is shutdown. 
166+    * @since 1.44.0 
167+    */ 
168+   public  boolean  isShutdown () {
169+     return  true ;
170+   }
161171}
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments