Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for attemptReconnect (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java

            }
    
            log.debug("Starting reconnection for handle: {} (cause: {})", path, cause.getMessage());
            return attemptReconnect(info, 0, cause);
        }
    
        /**
         * Attempt to reconnect a specific handle
         * @param handleInfo the handle information
         * @param cause the original exception that triggered reconnection
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 21 04:51:33 GMT 2025
    - 8.5K bytes
    - Click Count (1)
  2. docs/smb3-features/02-persistent-handles-design.md

                return CompletableFuture.failedFuture(
                    new IOException("No durable handle available for reconnection"));
            }
            
            return attemptReconnect(file, info, 0);
        }
        
        private CompletableFuture<SmbFile> attemptReconnect(SmbFile file, 
                                                            HandleInfo info, 
                                                            int attempt) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 31.6K bytes
    - Click Count (0)
Back to Top