- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for directoryNotificationsEnabled (0.15 seconds)
-
src/main/java/jcifs/config/BaseConfiguration.java
*/ protected long directoryCacheTimeout = 30000L; /** * Whether directory change notifications are enabled for cache invalidation */ protected boolean directoryNotificationsEnabled = true; /** * Maximum number of cached directory entries */ protected int maxDirectoryCacheEntries = 1000; // Multi-channel configuration fields /**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) -
src/main/java/jcifs/config/PropertyConfiguration.java
} catch (NumberFormatException e) { // Invalid value ignored } } value = props.getProperty("jcifs.smb.client.directoryNotificationsEnabled"); if (value != null) { this.directoryNotificationsEnabled = Boolean.parseBoolean(value); } value = props.getProperty("jcifs.smb.client.maxDirectoryCacheEntries"); if (value != null) {
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) -
docs/smb3-features/04-directory-leasing-design.md
public static final String DIRECTORY_CACHE_TIMEOUT = "jcifs.smb.client.directoryCacheTimeout"; public static final String DIRECTORY_NOTIFICATIONS_ENABLED = "jcifs.smb.client.directoryNotificationsEnabled"; public static final String MAX_DIRECTORY_CACHE_ENTRIES = "jcifs.smb.client.maxDirectoryCacheEntries"; public boolean isUseDirectoryLeasing() { return getBooleanProperty(USE_DIRECTORY_LEASING, true); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 36.2K bytes - Click Count (0) -
src/main/java/jcifs/Configuration.java
* * @return directory cache timeout in milliseconds */ long getDirectoryCacheTimeout(); /** * Property {@code jcifs.smb.client.directoryNotificationsEnabled} (boolean, default true) * * @return whether directory change notifications are enabled */ boolean isDirectoryNotificationsEnabled(); /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0)