Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getChannelHealthCheckInterval (0.24 sec)

  1. src/test/java/jcifs/config/MultiChannelConfigurationTest.java

            PropertyConfiguration config = new PropertyConfiguration(props);
            assertEquals(30, config.getChannelHealthCheckInterval());
    
            props.setProperty("jcifs.smb.client.channelHealthCheckInterval", "5");
            config = new PropertyConfiguration(props);
            assertEquals(5, config.getChannelHealthCheckInterval());
        }
    
        @Test
        void testCompleteMultiChannelConfiguration() throws CIFSException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/DelegatingConfiguration.java

        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getChannelHealthCheckInterval()
         */
        @Override
        public int getChannelHealthCheckInterval() {
            return this.delegate.getChannelHealthCheckInterval();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getHandleStateDirectory()
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/multichannel/ChannelManagerTest.java

            when(mockConfig.getChannelBindingPolicy()).thenReturn(1); // preferred
            when(mockConfig.getLoadBalancingStrategy()).thenReturn("adaptive");
            when(mockConfig.getChannelHealthCheckInterval()).thenReturn(10);
    
            channelManager = new ChannelManager(mockContext, mockSession);
        }
    
        @Test
        void testConstructor() {
            assertNotNull(channelManager);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            return this.loadBalancingStrategy;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getChannelHealthCheckInterval()
         */
        @Override
        public int getChannelHealthCheckInterval() {
            return this.channelHealthCheckInterval;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         *
         * Property {@code jcifs.smb.client.channelHealthCheckInterval} (int, default 10)
         *
         * @return health check interval in seconds
         */
        int getChannelHealthCheckInterval();
    
        /**
         * Property {@code jcifs.smb.client.handleStateDirectory}
         *
         * @return directory to store persistent handle state
         */
        String getHandleStateDirectory();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top