Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for completeReconnect (0.07 seconds)

  1. 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) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:49:49 GMT 2025
    - 13K bytes
    - Click Count (0)
  2. 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 {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 31.6K bytes
    - Click Count (0)
Back to Top