Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getLongProperty (0.42 sec)

  1. docs/smb3-features/06-witness-protocol-design.md

    }
    
    public long getWitnessHeartbeatTimeout() {
        return getLongProperty(WITNESS_HEARTBEAT_TIMEOUT, 120000);  // 2 minutes
    }
    
    public long getWitnessRegistrationTimeout() {
        return getLongProperty(WITNESS_REGISTRATION_TIMEOUT, 300000);  // 5 minutes
    }
    
    public long getWitnessReconnectDelay() {
        return getLongProperty(WITNESS_RECONNECT_DELAY, 1000);  // 1 second
    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  2. docs/smb3-features/04-directory-leasing-design.md

        String scope = getProperty(DIRECTORY_CACHE_SCOPE, "IMMEDIATE_CHILDREN");
        return DirectoryCacheScope.valueOf(scope);
    }
    
    public long getDirectoryCacheTimeout() {
        return getLongProperty(DIRECTORY_CACHE_TIMEOUT, 30000);  // 30 seconds
    }
    
    public boolean isDirectoryNotificationsEnabled() {
        return getBooleanProperty(DIRECTORY_NOTIFICATIONS_ENABLED, true);
    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  3. docs/smb3-features/02-persistent-handles-design.md

    }
    
    public boolean isUsePersistentHandles() {
        return getBooleanProperty(USE_PERSISTENT_HANDLES, false);
    }
    
    public long getDurableHandleTimeout() {
        return getLongProperty(DURABLE_HANDLE_TIMEOUT, 120000);  // 2 minutes
    }
    
    public int getHandleReconnectRetries() {
        return getIntProperty(HANDLE_RECONNECT_RETRIES, 3);
    }
    
    public String getHandleStateDirectory() {
    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