- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for addChannel (0.52 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb/MultiChannelManager.java
public String getSessionId() { return sessionId; } public List<ChannelInfo> getChannels() { return new ArrayList<>(channels); } public void addChannel(ChannelInfo channel) { channels.add(channel); if (primaryChannel == null) { primaryChannel = channel; } }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 20.5K bytes - Click Count (0) -
docs/smb3-features/03-multi-channel-design.md
// Add test channels ChannelInfo channel1 = createTestChannel("channel1", 1000); // 1Gbps ChannelInfo channel2 = createTestChannel("channel2", 10000); // 10Gbps manager.addChannel(channel1); manager.addChannel(channel2); // Test load balancer selection ChannelLoadBalancer balancer = new ChannelLoadBalancer(manager); // Large transfer should prefer high-bandwidth channelCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 39.6K bytes - Click Count (0)