Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for storeHandle (0.14 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

        }
    
        /**
         * Store handle information after successful create
         * @param path the file path
         * @param fileId the 16-byte file ID
         * @param guid the handle GUID
         */
        public void storeHandle(String path, byte[] fileId, HandleGuid guid) {
            lock.writeLock().lock();
            try {
                HandleInfo info = guidToHandle.get(guid);
                if (info != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                        PersistentHandleManager persistentManager = session.getPersistentHandleManager();
                        if (persistentManager != null) {
                            persistentManager.storeHandle(uncPath, resp.getFileId(), resp.getDurableHandleGuid());
                        }
                    }
    
                    // Update lease state if granted
                    if (config.isUseLeases() && resp.isLeaseGranted()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top