- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setContextHandle (0.08 sec)
-
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
String registrationId = generateRegistrationId(contextHandle, request.getShareName()); response.setRegistrationId(registrationId); response.setContextHandle(contextHandle); log.debug("Witness registration successful: {}", registrationId); } else { response.setError(message.getErrorMessage());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
if (response != null && response.isSuccess()) { registration.setState(WitnessRegistrationState.REGISTERED); registration.setContextHandle(response.getContextHandle()); registrations.put(registration.getRegistrationId(), registration); listeners.put(registration.getRegistrationId(), listener);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
} /** * Sets the context handle for the async notify request. * * @param contextHandle the context handle from registration */ public void setContextHandle(byte[] contextHandle) { this.contextHandle = contextHandle != null ? contextHandle.clone() : null; } /** * Gets the context handle. * * @return the context handle */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0)