- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getRegistrationId (0.09 sec)
-
src/main/java/jcifs/internal/witness/WitnessClient.java
// Clean up expired registration stopAsyncNotificationMonitoring(registration.getRegistrationId()); registrations.remove(registration.getRegistrationId()); listeners.remove(registration.getRegistrationId()); } } } /** * Monitors active registrations and sends heartbeats. */ private void monitorRegistrations() {
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-features/06-witness-protocol-design.md
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
// Setup mock RPC response WitnessRegisterResponse mockResponse = mock(WitnessRegisterResponse.class); lenient().when(mockResponse.isSuccess()).thenReturn(true); lenient().when(mockResponse.getRegistrationId()).thenReturn("test-reg-123"); WitnessRpcClient mockRpc = mock(WitnessRpcClient.class); lenient().when(mockRpc.register(any(WitnessRegisterRequest.class))).thenReturn(mockResponse);
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/WitnessRpcClient.java
if (!connected) { throw new IOException("Witness client not connected"); } try { log.debug("Unregistering witness: {}", request.getRegistrationId()); // Create and populate the RPC message WitnessUnregisterMessage message = new WitnessUnregisterMessage(); message.setContextHandle(request.getContextHandle());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0)