- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for HandleInfo (0.46 sec)
-
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
*/ public class PersistentHandleManager { private static final Logger log = LoggerFactory.getLogger(PersistentHandleManager.class); private final ConcurrentHashMap<String, HandleInfo> handles; private final ConcurrentHashMap<HandleGuid, HandleInfo> guidToHandle; private final Path stateDirectory; private final ScheduledExecutorService scheduler; private final CIFSContext context;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
HandleInfo info = guidToHandle.get(guid); if (info != null) { System.arraycopy(fileId, 0, info.fileId, 0, 16); if (info.type == HandleType.PERSISTENT) { persistHandle(info); } } } public HandleInfo getHandleForReconnect(String path) { HandleInfo info = handles.get(path);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0)