Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for completeReconnect (0.05 sec)

  1. docs/smb3-features/02-persistent-handles-design.md

            this.fileId = response.getFileId();
            this.handleGuid = handle.createGuid;
            this.handleType = handle.type;
            handleManager.completeReconnect(handle.path, true);
        } else {
            handleManager.completeReconnect(handle.path, false);
            throw new IOException("Failed to reconnect durable handle");
        }
    }
    
    @Override
    public void close() throws IOException {
        try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

            }
        }
    
        /**
         * Complete a reconnection attempt
         * @param path the file path
         * @param success true if reconnection was successful
         */
        public void completeReconnect(String path, boolean success) {
            lock.writeLock().lock();
            try {
                HandleInfo info = handles.get(path);
                if (info != null) {
                    if (success) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
Back to top