Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for directorySize (0.07 sec)

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

         * Change notification handle
         */
        public static class ChangeNotificationHandle {
            private final String directoryPath;
            private final Smb2LeaseKey leaseKey;
            private final SmbFile directoryFile;
            private volatile boolean active;
            private CompletableFuture<Void> notificationFuture;
    
            /**
             * Create a new change notification 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 Smb2LeaseKey leaseKey;
            private final SmbFile directoryFile;
            private volatile boolean active;
            
            public ChangeNotificationHandle(String path, Smb2LeaseKey key, SmbFile dir) {
                this.directoryPath = path;
                this.leaseKey = key;
                this.directoryFile = dir;
                this.active = 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)
Back to top