Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isUseDurableHandles (0.07 sec)

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

            return this.delegate.isAllowGuestFallback();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isUseDurableHandles()
         */
        @Override
        public boolean isUseDurableHandles() {
            return this.delegate.isUseDurableHandles();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isUsePersistentHandles()
         */
        @Override
    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

                log.debug("Durable handle reconnect failed, opening new handle", e);
            }
        }
        
        // Request new durable handle if configured
        if (context.getConfig().isUseDurableHandles()) {
            requestDurableHandle();
        }
        
        // ... rest of normal connection logic ...
    }
    
    private void requestDurableHandle() {
        Configuration config = context.getConfig();
        
    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.useDurableHandles}, defaults to true
         *
         * @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
         */
    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.allowGuestFallback;
        }
    
        @Override
        public byte[] getMachineId() {
            return this.machineId;
        }
    
        @Override
        public boolean isUseDurableHandles() {
            return this.useDurableHandles;
        }
    
        @Override
        public boolean isUsePersistentHandles() {
            return this.usePersistentHandles;
        }
    
        @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