- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for MultiChannelManager (0.51 sec)
-
src/main/java/jcifs/smb/MultiChannelManager.java
* * Manages multiple network connections for improved performance and redundancy * as specified in the SMB 3.x multi-channel feature. */ public class MultiChannelManager { private static final Logger log = LoggerFactory.getLogger(MultiChannelManager.class); // Multi-channel configuration private final Configuration config; private final int maxChannels;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/MultiChannelManagerBasicTest.java
this.config = new BaseConfiguration(true); this.multiChannelManager = new MultiChannelManager(config); } @Test @DisplayName("MultiChannelManager should initialize successfully") void testInitialization() { assertNotNull(multiChannelManager); MultiChannelManager.ChannelStatistics stats = multiChannelManager.getStatistics(); assertEquals(0, stats.getActiveSessions());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 4K bytes - Viewed (0)