Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for NotificationFilter (0.16 seconds)

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

         */
        public int getNotificationFilter() {
            return notificationFilter;
        }
    
        /**
         * Sets the notification filter flags that specify which changes to monitor
         * @param notificationFilter the notification filter flags
         */
        public void setNotificationFilter(int notificationFilter) {
            this.notificationFilter = notificationFilter;
        }
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 02:21:31 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  2. docs/smb3-features/04-directory-leasing-design.md

                flags |= DIRECTORY_LEASE_FLAG_NOTIFICATIONS;
            }
            writeInt4(buffer, dataOffset, flags);
            dataOffset += 4;
            
            // NotificationFilter (4 bytes)
            writeInt4(buffer, dataOffset, notificationFilter);
        }
        
        @Override
        public void decode(byte[] buffer, int offset, int length) {
            super.decode(buffer, offset, length);
            
    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)
Back to Top