Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for createRequest (0.04 sec)

  1. docs/smb3-features/04-directory-leasing-design.md

                getPath(), requestedState, scope);
            
            // Add directory lease context to create request
            if (createRequest != null) {
                DirectoryLeaseContext leaseCtx = new DirectoryLeaseContext(
                    directoryLeaseKey, requestedState, scope);
                createRequest.addCreateContext(leaseCtx);
            }
        }
    }
    
    @Override
    protected void doConnect() throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. docs/smb3-features/01-smb3-lease-design.md

                
            leaseKey = leaseManager.requestLease(getPath(), requestedState);
            
            // Add lease context to create request
            if (createRequest != null) {
                createRequest.addLeaseContext(leaseKey, requestedState, 
                    tree.getSession().supports(SMB3_0_2));
            }
        }
        
        // ... rest of connection logic ...
    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  3. docs/smb3-features/02-persistent-handles-design.md

                                                        timeout, leaseKey);
        durableHandleRequested = true;
        
        // Add to create request
        if (createRequest != null) {
            createRequest.addDurableHandleContext(handleType, timeout, handleGuid);
        }
    }
    
    private void reconnectWithDurableHandle(HandleInfo handle) throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top