- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for onWitnessNotification (0.27 sec)
-
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
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 occurredRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0)