Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for attemptRecovery (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java

            state.incrementRetry();
    
            // For test purposes, execute recovery immediately without delay
            // In production, this might use the delay from getNextRetryTime()
            executor.submit(() -> attemptRecovery(channel, state));
        }
    
        private void scheduleRecoveryWithTransport(ChannelInfo channel, FailoverState state, SmbTransport newTransport) {
            state.incrementRetry();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

            log.warn("RDMA error occurred: {}", error.getMessage());
            statistics.recordError();
    
            if (isRecoverableError(error)) {
                return attemptRecovery(connection, error);
            } else {
                log.error("Non-recoverable RDMA error, fallback required", error);
                return false;
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top