- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for WitnessNotification (0.14 sec)
-
docs/smb3-features/06-witness-protocol-design.md
} } private void handleResourceChange(WitnessNotification notification) { // Resource state changed - may need to reconnect log.info("Resource change detected for: {}", notification.getResourceName()); // Schedule reconnection attempt scheduleReconnection(1000); // 1 second delay } private void handleClientMove(WitnessNotification notification) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessClientTest.java
client.registerForNotifications("\\\\server\\share", serverAddress, listener).get(5, TimeUnit.SECONDS); // Create and process a notification WitnessNotification notification = new WitnessNotification(WitnessEventType.CLIENT_MOVE, "\\\\server\\share"); notification.addNewIPAddress(InetAddress.getByName("192.168.1.101")); client.processNotification(notification);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
try { // Convert RPC message to WitnessNotification WitnessNotification notification = new WitnessNotification(); // Set event type based on message type WitnessEventType eventType = convertMessageTypeToEventType(message.getType()); notification.setEventType(eventType);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
#### 6.1 Core Witness Infrastructure ``` Package: jcifs.internal.witness ├── WitnessClient.java - Witness client implementation ├── WitnessRegistration.java - Client registration with witness ├── WitnessNotification.java - Notification handling ├── ResourceChange.java - Resource change events └── WitnessTransport.java - Witness-specific RPC transport ``` #### 6.2 Implementation Tasks
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0)