- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for handleChannelFailure (0.07 seconds)
-
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
} /** * Handle channel failure * * @param channel failed channel * @param error error that caused failure */ public void handleChannelFailure(ChannelInfo channel, Exception error) { failover.handleFailure(channel, error); } /** * Get channel for specific transport * * @param transport transport instanceCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 20K bytes - Click Count (0) -
docs/smb3-features/03-multi-channel-design.md
} } public ChannelInfo selectChannel(SMBMessage message) { return loadBalancer.selectChannel(message); } public void handleChannelFailure(ChannelInfo channel, Exception error) { failover.handleFailure(channel, error); } private void performHealthCheck() { for (ChannelInfo channel : channels.values()) {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/test/java/jcifs/internal/smb2/multichannel/ChannelManagerTest.java
IOException error = new IOException("Test error"); // Should not throw exception assertDoesNotThrow(() -> channelManager.handleChannelFailure(channel, error)); } @Test void testEstablishReplacementChannel() { // Should not throw exception even when no interfaces are availableCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 7.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
ChannelInfo channel = channelManager.getChannelForTransport(trans); if (channel != null) { channelManager.handleChannelFailure(channel, e); // Retry with primary transport response = this.transport.send(request, response, params); } else {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 68.9K bytes - Click Count (0)