Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NotificationFilter (0.75 sec)

  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;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 9.4K bytes
    - Viewed (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);
            
    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