Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for channelHealthCheckInterval (0.27 seconds)

  1. src/main/java/jcifs/config/BaseConfiguration.java

            if (this.channelBindingPolicy == -1) {
                this.channelBindingPolicy = 1; // Default to preferred
            }
            if (this.channelHealthCheckInterval == 0) {
                this.channelHealthCheckInterval = 10;
            }
            if (this.loadBalancingStrategy == null) {
                this.loadBalancingStrategy = "adaptive";
            }
    
            // Initialize RDMA defaults
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  2. src/main/java/jcifs/config/PropertyConfiguration.java

            }
    
            value = props.getProperty("jcifs.smb.client.channelHealthCheckInterval");
            if (value != null) {
                try {
                    int intValue = Integer.parseInt(value);
                    if (intValue > 0) {
                        this.channelHealthCheckInterval = intValue;
                    }
                } catch (NumberFormatException e) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:49:49 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  3. docs/smb3-features/03-multi-channel-design.md

    public static final String LOAD_BALANCING_STRATEGY = "jcifs.smb.client.loadBalancingStrategy";
    public static final String CHANNEL_HEALTH_CHECK_INTERVAL = "jcifs.smb.client.channelHealthCheckInterval";
    
    public boolean isUseMultiChannel() {
        return getBooleanProperty(USE_MULTI_CHANNEL, true);
    }
    
    public int getMaxChannels() {
        return getIntProperty(MAX_CHANNELS, 4);
    }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 39.6K bytes
    - Click Count (0)
  4. src/main/java/jcifs/Configuration.java

         *
         * @return load balancing strategy
         */
        String getLoadBalancingStrategy();
    
        /**
         * Channel health check interval in seconds
         *
         * Property {@code jcifs.smb.client.channelHealthCheckInterval} (int, default 10)
         *
         * @return health check interval in seconds
         */
        int getChannelHealthCheckInterval();
    
        /**
         * Property {@code jcifs.smb.client.handleStateDirectory}
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 25.4K bytes
    - Click Count (0)
Back to Top