Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for processNotification (1.32 sec)

  1. src/main/java/jcifs/internal/witness/WitnessClient.java

                }
            });
        }
    
        /**
         * Processes a received witness notification.
         *
         * @param notification the notification to process
         */
        public void processNotification(WitnessNotification notification) {
            log.info("Received witness notification: {} for resource: {}", notification.getEventType(), notification.getResourceName());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/witness/WitnessClientTest.java

            WitnessNotification notification = new WitnessNotification(WitnessEventType.CLIENT_MOVE, "\\\\server\\share");
            notification.addNewIPAddress(InetAddress.getByName("192.168.1.101"));
    
            client.processNotification(notification);
    
            // Verify notification was delivered
            assertTrue(listener.waitForNotification(1000));
            assertNotNull(listener.getLastNotification());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  3. docs/smb3-features/06-witness-protocol-design.md

                    }
                    
                } catch (Exception e) {
                    log.error("Error during witness unregistration", e);
                }
            });
        }
        
        public void processNotification(WitnessNotification notification) {
            log.info("Received witness notification: {} for resource: {}", 
                notification.getEventType(), notification.getResourceName());
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
Back to top