Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/jcifs/internal/witness/WitnessClientTest.java

                this.lastNotification = notification;
                notificationLatch.countDown();
            }
    
            @Override
            public void onRegistrationFailed(WitnessRegistration registration, Exception error) {
                // Test implementation
            }
    
            @Override
            public void onRegistrationExpired(WitnessRegistration registration) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 9.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);
        }
        
        public WitnessClient(InetAddress witnessServer, CIFSContext context) {
    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/main/java/jcifs/internal/witness/WitnessClient.java

            /**
             * Called when a witness registration fails.
             *
             * @param registration the failed registration
             * @param error the error that occurred
             */
            void onRegistrationFailed(WitnessRegistration registration, Exception error);
    
            /**
             * Called when a witness registration expires.
             *
             * @param registration the expired registration
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

            @Override
            public void onWitnessNotification(WitnessNotification notification) {
                handleWitnessEvent(notification);
            }
    
            @Override
            public void onRegistrationFailed(WitnessRegistration registration, Exception error) {
                log.error("Witness registration failed: {}", registration.getRegistrationId(), error);
            }
    
            @Override
    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