Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for onWitnessNotification (0.07 sec)

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

        public interface WitnessNotificationListener {
            /**
             * Called when a witness notification is received.
             *
             * @param notification the witness notification
             */
            void onWitnessNotification(WitnessNotification notification);
    
            /**
             * Called when a witness registration fails.
             *
             * @param registration the failed registration
             * @param error the error that occurred
    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. docs/smb3-features/06-witness-protocol-design.md

        private static final int DEFAULT_WITNESS_PORT = 135;  // RPC endpoint mapper
        
        public interface WitnessNotificationListener {
            void onWitnessNotification(WitnessNotification notification);
            void onRegistrationFailed(WitnessRegistration registration, Exception error);
            void onRegistrationExpired(WitnessRegistration registration);
        }
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/witness/WitnessClientTest.java

            private final CountDownLatch notificationLatch = new CountDownLatch(1);
            private volatile WitnessNotification lastNotification;
    
            @Override
            public void onWitnessNotification(WitnessNotification notification) {
                this.lastNotification = notification;
                notificationLatch.countDown();
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
        /**
         * Handle witness notifications
         */
        private class WitnessNotificationHandler implements WitnessClient.WitnessNotificationListener {
            @Override
            public void onWitnessNotification(WitnessNotification notification) {
                handleWitnessEvent(notification);
            }
    
            @Override
            public void onRegistrationFailed(WitnessRegistration registration, Exception error) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top