Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for usePersistentHandles (0.36 seconds)

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

  1. 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 */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  2. 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 {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:49:49 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  3. 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";
    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)
Back to Top