- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for selectChannel (0.12 seconds)
-
src/main/java/jcifs/smb/MultiChannelManager.java
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
} 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); }
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) -
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 implementationCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 11.6K bytes - Click Count (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 */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 20K bytes - Click Count (0)