Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getDurableHandleTimeout (0.68 sec)

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

            return this.delegate.isUsePersistentHandles();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getDurableHandleTimeout()
         */
        @Override
        public long getDurableHandleTimeout() {
            return this.delegate.getDurableHandleTimeout();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getHandleReconnectRetries()
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. docs/smb3-features/02-persistent-handles-design.md

        } else if (tree.getSession().supports(SMB2_1)) {
            handleType = HandleType.DURABLE_V1;
        } else {
            return;  // No durable handle support
        }
        
        long timeout = config.getDurableHandleTimeout();
        Smb2LeaseKey leaseKey = getLeaseKey();  // Get associated lease if any
        
        handleGuid = handleManager.requestDurableHandle(getPath(), handleType, 
    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

        /**
         * Property {@code jcifs.smb.client.durableHandleTimeout}, defaults to 120000
         *
         * @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
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            return this.useDurableHandles;
        }
    
        @Override
        public boolean isUsePersistentHandles() {
            return this.usePersistentHandles;
        }
    
        @Override
        public long getDurableHandleTimeout() {
            return this.durableHandleTimeout;
        }
    
        @Override
        public int getHandleReconnectRetries() {
            return this.handleReconnectRetries;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top