Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for handleReconnectRetries (4.72 sec)

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

        /** Timeout for durable handles in milliseconds */
        protected long durableHandleTimeout = 120000; // 2 minutes
        /** Maximum number of retry attempts for handle reconnection */
        protected int handleReconnectRetries = 3;
        /** Directory to store persistent handle state */
        protected String handleStateDirectory;
    
        // Directory leasing configuration fields
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. docs/smb3-features/02-persistent-handles-design.md

    public static final String DURABLE_HANDLE_TIMEOUT = "jcifs.smb.client.durableHandleTimeout";
    public static final String HANDLE_RECONNECT_RETRIES = "jcifs.smb.client.handleReconnectRetries";
    public static final String HANDLE_STATE_DIR = "jcifs.smb.client.handleStateDirectory";
    
    public boolean isUseDurableHandles() {
        return getBooleanProperty(USE_DURABLE_HANDLES, true);
    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         *
         * @return timeout for durable handles in milliseconds
         */
        long getDurableHandleTimeout();
    
        /**
         * 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
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top