Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for performReconnection (0.57 sec)

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

                        log.debug("Reconnection attempt {} for {}", attempt + 1, info.getPath());
                    }
    
                    // Perform the actual reconnection
                    boolean success = performReconnection(info);
    
                    if (success) {
                        handleManager.completeReconnect(info.getPath(), true);
                        log.info("Successfully reconnected handle: {}", info.getPath());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/persistent/HandleReconnectorTest.java

                super(manager, 2, 50);
                this.shouldSucceed = shouldSucceed;
            }
    
            @Override
            protected boolean performReconnection(HandleInfo info) throws Exception {
                if (shouldSucceed) {
                    return true;
                } else {
                    throw new IOException("Simulated reconnection failure");
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top