Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ChangeNotificationHandle (0.09 sec)

  1. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

                return; // Already watching
            }
    
            try {
                SmbFile directory = new SmbFile(directoryPath, leaseManager.getContext());
                ChangeNotificationHandle handle = new ChangeNotificationHandle(directoryPath, leaseKey, directory);
    
                activeWatchers.put(directoryPath, handle);
    
                // Start async change notification
                startAsyncNotification(handle);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  2. docs/smb3-features/04-directory-leasing-design.md

        private final ConcurrentHashMap<String, ChangeNotificationHandle> activeWatchers;
        
        public enum DirectoryChangeType {
            FILE_ADDED,
            FILE_REMOVED,
            FILE_MODIFIED,
            DIRECTORY_RENAMED,
            ATTRIBUTES_CHANGED
        }
        
        public static class ChangeNotificationHandle {
            private final String directoryPath;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top