- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for selectChannel (0.07 sec)
-
src/main/java/jcifs/smb/MultiChannelManager.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
} catch (NoSuchAlgorithmException e) { throw new IOException("SHA-256 not available", e); } } public ChannelInfo selectChannel(SMBMessage message) { return loadBalancer.selectChannel(message); } public void handleChannelFailure(ChannelInfo channel, Exception error) { failover.handleFailure(channel, error); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
/** * Select a channel for the given message * * @param message message to send * @return selected channel */ public ChannelInfo selectChannel(CommonServerMessageBlock message) { return loadBalancer.selectChannel(message); } /** * Handle channel failure * * @param channel failed channel * @param error error that caused failure */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
// Redistribute to healthy channels for (CommonServerMessageBlock op : operationsCopy) { try { ChannelInfo alternativeChannel = manager.getLoadBalancer().selectChannel(op); alternativeChannel.addPendingOperation(op); // Operation would be resent on alternative channel // For now, skip actual send implementation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0)