Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for usePersistentHandles (0.13 sec)

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

            if (value != null) {
                this.useLeases = Boolean.parseBoolean(value);
            }
    
            value = props.getProperty("jcifs.smb.client.usePersistentHandles");
            if (value != null) {
                this.usePersistentHandles = Boolean.parseBoolean(value);
            }
    
            value = props.getProperty("jcifs.smb.client.persistentHandleTimeout");
            if (value != null) {
                try {
    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. docs/smb3-features/02-persistent-handles-design.md

    ```java
    // In PropertyConfiguration.java
    public static final String USE_DURABLE_HANDLES = "jcifs.smb.client.useDurableHandles";
    public static final String USE_PERSISTENT_HANDLES = "jcifs.smb.client.usePersistentHandles";
    public static final String DURABLE_HANDLE_TIMEOUT = "jcifs.smb.client.durableHandleTimeout";
    public static final String HANDLE_RECONNECT_RETRIES = "jcifs.smb.client.handleReconnectRetries";
    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/config/BaseConfiguration.java

        /** Whether to use durable handles for improved reliability */
        protected boolean useDurableHandles = true;
        /** Whether to use persistent handles for maximum reliability */
        protected boolean usePersistentHandles = false;
        /** Timeout for durable handles in milliseconds */
        protected long durableHandleTimeout = 120000; // 2 minutes
        /** 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
    - 36.5K bytes
    - Viewed (0)
  4. docs/SMB3_IMPLEMENTATION_PLAN.md

    ## Configuration Properties
    
    ```properties
    # Lease configuration
    jcifs.smb.client.useLeases=true
    jcifs.smb.client.leaseTimeout=30000
    
    # Persistent handles
    jcifs.smb.client.usePersistentHandles=true
    jcifs.smb.client.durableTimeout=120000
    
    # Multi-channel
    jcifs.smb.client.useMultiChannel=true
    jcifs.smb.client.maxChannels=4
    jcifs.smb.client.channelBindingPolicy=required
    
    # Directory leasing
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         *
         * @return whether to use durable handles for improved reliability
         */
        boolean isUseDurableHandles();
    
        /**
         * Property {@code jcifs.smb.client.usePersistentHandles}, defaults to false
         *
         * @return whether to use persistent handles for maximum reliability
         */
        boolean isUsePersistentHandles();
    
        /**
    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