Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for processChangeNotification (1.41 sec)

  1. docs/smb3-features/04-directory-leasing-design.md

                            handle.directoryFile.getTree().send(request);
                        
                        if (response.isSuccess()) {
                            processChangeNotification(handle, response);
                        }
                        
                    } catch (Exception e) {
                        if (handle.active) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

         * Process change notification response
         *
         * @param handle notification handle
         * @param outputBuffer response buffer containing FILE_NOTIFY_INFORMATION structures
         */
        public void processChangeNotification(ChangeNotificationHandle handle, byte[] outputBuffer) {
            if (outputBuffer == null || outputBuffer.length == 0) {
                return;
            }
    
            int offset = 0;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
Back to top