Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getDirectoryCacheTimeout (0.12 sec)

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

        }
    
        @Override
        public String getDirectoryCacheScope() {
            return this.delegate.getDirectoryCacheScope();
        }
    
        @Override
        public long getDirectoryCacheTimeout() {
            return this.delegate.getDirectoryCacheTimeout();
        }
    
        @Override
        public boolean isDirectoryNotificationsEnabled() {
            return this.delegate.isDirectoryNotificationsEnabled();
        }
    
        @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/04-directory-leasing-design.md

    }
    
    public DirectoryCacheScope getDirectoryCacheScope() {
        String scope = getProperty(DIRECTORY_CACHE_SCOPE, "IMMEDIATE_CHILDREN");
        return DirectoryCacheScope.valueOf(scope);
    }
    
    public long getDirectoryCacheTimeout() {
        return getLongProperty(DIRECTORY_CACHE_TIMEOUT, 30000);  // 30 seconds
    }
    
    public boolean isDirectoryNotificationsEnabled() {
        return getBooleanProperty(DIRECTORY_NOTIFICATIONS_ENABLED, true);
    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

        /**
         * Property {@code jcifs.smb.client.directoryCacheTimeout} (long, default 30000)
         *
         * @return directory cache timeout in milliseconds
         */
        long getDirectoryCacheTimeout();
    
        /**
         * Property {@code jcifs.smb.client.directoryNotificationsEnabled} (boolean, default true)
         *
         * @return whether directory change notifications are enabled
         */
    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

        }
    
        @Override
        public String getDirectoryCacheScope() {
            return this.directoryCacheScope;
        }
    
        @Override
        public long getDirectoryCacheTimeout() {
            return this.directoryCacheTimeout;
        }
    
        @Override
        public boolean isDirectoryNotificationsEnabled() {
            return this.directoryNotificationsEnabled;
        }
    
    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