Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for persistentHandleTimeout (0.13 sec)

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

            if (value != null) {
                this.usePersistentHandles = Boolean.parseBoolean(value);
            }
    
            value = props.getProperty("jcifs.smb.client.persistentHandleTimeout");
            if (value != null) {
                try {
                    this.persistentHandleTimeout = Long.parseLong(value);
                } catch (NumberFormatException e) {
                    // Invalid value ignored
                }
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

         */
        protected boolean witnessServiceDiscovery = true;
    
        // SMB3 Lease support
        protected boolean useLeases = true;
    
        // SMB3 Persistent handle support
        protected long persistentHandleTimeout = 120000; // 2 minutes default
    
        /**
         * Constructs a BaseConfiguration with default settings
         *
         * @throws CIFSException if configuration initialization fails
         */
    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