Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for handleFailure (0.05 sec)

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

        }
    
        /**
         * Handle channel failure
         *
         * @param failedChannel failed channel
         * @param error error that caused failure
         */
        public void handleFailure(ChannelInfo failedChannel, Exception error) {
            log.warn("Channel {} failed: {}", failedChannel.getChannelId(), error.getMessage());
    
            // Mark channel as failed
            failedChannel.setState(ChannelState.FAILED);
    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. docs/smb3-features/03-multi-channel-design.md

        public ChannelInfo selectChannel(SMBMessage message) {
            return loadBalancer.selectChannel(message);
        }
        
        public void handleChannelFailure(ChannelInfo channel, Exception error) {
            failover.handleFailure(channel, error);
        }
        
        private void performHealthCheck() {
            for (ChannelInfo channel : channels.values()) {
                if (channel.getIdleTime() > 60000) {  // 1 minute idle
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

         *
         * @param channel failed channel
         * @param error error that caused failure
         */
        public void handleChannelFailure(ChannelInfo channel, Exception error) {
            failover.handleFailure(channel, error);
        }
    
        /**
         * Get channel for specific transport
         *
         * @param transport transport instance
         * @return corresponding channel or null
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
Back to top