Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getHandleReconnectRetries (0.11 seconds)

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

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getDurableHandleTimeout();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getHandleReconnectRetries()
         */
        @Override
        public int getHandleReconnectRetries() {
            return this.delegate.getHandleReconnectRetries();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isUseMultiChannel()
         */
        @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 24.1K bytes
    - Click Count (0)
  2. docs/smb3-features/02-persistent-handles-design.md

        return getBooleanProperty(USE_PERSISTENT_HANDLES, false);
    }
    
    public long getDurableHandleTimeout() {
        return getLongProperty(DURABLE_HANDLE_TIMEOUT, 120000);  // 2 minutes
    }
    
    public int getHandleReconnectRetries() {
        return getIntProperty(HANDLE_RECONNECT_RETRIES, 3);
    }
    
    public String getHandleStateDirectory() {
        return getProperty(HANDLE_STATE_DIR, 
    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)
  3. src/main/java/jcifs/Configuration.java

        /**
         * Property {@code jcifs.smb.client.handleReconnectRetries}, defaults to 3
         *
         * @return maximum number of retry attempts for handle reconnection
         */
        int getHandleReconnectRetries();
    
        /**
         * Enable SMB3 Multi-Channel support
         *
         * Property {@code jcifs.smb.client.useMultiChannel} (boolean, default true)
         *
         * @return whether multi-channel is enabled
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 25.4K bytes
    - Click Count (0)
Back to Top