Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for isUseMultiChannel (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

            });
        }
    
        /**
         * Check if multi-channel is enabled
         *
         * @return true if multi-channel is enabled
         */
        public boolean isUseMultiChannel() {
            return channelManager != null && channelManager.isUseMultiChannel();
        }
    
        /**
         * Get the channel manager
         *
         * @return channel manager instance
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 68.9K bytes
    - Click Count (0)
  2. docs/smb3-features/03-multi-channel-design.md

    private boolean multiChannelSupported;
    
    public void negotiateMultiChannel() throws IOException {
        // Check if both client and server support multi-channel
        if (!context.getConfig().isUseMultiChannel()) {
            return;
        }
        
        if (!serverCapabilities.contains(SMB2_GLOBAL_CAP_MULTI_CHANNEL)) {
            log.debug("Server does not support multi-channel");
            return;
        }
        
    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)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        public String getHandleStateDirectory() {
            return this.handleStateDirectory;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isUseMultiChannel()
         */
        @Override
        public boolean isUseMultiChannel() {
            return this.useMultiChannel;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getMaxChannels()
         */
        @Override
    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)
  4. src/test/java/jcifs/config/MultiChannelConfigurationTest.java

            PropertyConfiguration config = new PropertyConfiguration(props);
            assertFalse(config.isUseMultiChannel());
    
            props.setProperty("jcifs.smb.client.useMultiChannel", "true");
            config = new PropertyConfiguration(props);
            assertTrue(config.isUseMultiChannel());
        }
    
        @Test
        void testMaxChannelsProperty() throws CIFSException {
            Properties props = new Properties();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 21 11:13:46 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  5. src/test/java/jcifs/internal/smb2/multichannel/ChannelManagerTest.java

            assertNotNull(channelManager);
            assertFalse(channelManager.isUseMultiChannel());
            assertEquals(0, channelManager.getChannels().size());
            assertNotNull(channelManager.getLoadBalancer());
        }
    
        @Test
        void testInitializationWithoutMultiChannelSupport() throws IOException {
            when(mockConfig.isUseMultiChannel()).thenReturn(false);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 21 11:13:46 GMT 2025
    - 7.6K bytes
    - Click Count (0)
Back to Top