- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for establishReplacementChannel (0.2 seconds)
-
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
} catch (Exception e) { log.debug("Error disconnecting removed channel", e); } } /** * Establish a replacement channel */ public void establishReplacementChannel() { if (!multiChannelEnabled) return; try { int currentChannels = channels.size(); if (currentChannels < maxChannels && canEstablishMoreChannels()) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 20K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
manager.removeChannel(channel); failoverStates.remove(channel.getChannelId()); // Try to establish a replacement channel manager.establishReplacementChannel(); } /** * State tracking for channel failover */ public static class FailoverState { private final String channelId; private final long failureTime;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 11.6K bytes - Click Count (0) -
docs/smb3-features/03-multi-channel-design.md
manager.removeChannel(channel); failoverStates.remove(channel.getChannelId()); // Try to establish a replacement channel manager.establishReplacementChannel(); } } ``` ## 5. Integration with Existing Code ### 5.1 Session Integration ```java // In SmbSession.java private ChannelManager channelManager;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)