- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getRemoteInterface (0.06 sec)
-
src/test/java/jcifs/internal/smb2/multichannel/ChannelFailoverTest.java
// Wait a bit for recovery attempt Thread.sleep(100); verify(mockChannelManager).createTransport(failedChannel.getLocalInterface(), failedChannel.getRemoteInterface()); } @Test void testMultipleFailuresExceedRetryLimit() { IOException error = new IOException("Connection failed"); // Simulate multiple failures
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelInfoTest.java
assertEquals(mockTransport, channelInfo.getTransport()); assertEquals(localInterface, channelInfo.getLocalInterface()); assertEquals(remoteInterface, channelInfo.getRemoteInterface()); assertEquals(ChannelState.DISCONNECTED, channelInfo.getState()); assertFalse(channelInfo.isPrimary()); assertEquals(0, channelInfo.getBytesSent());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java
ChannelInfo maxBandwidthChannel = null; int maxBandwidth = 0; for (ChannelInfo channel : channels) { int linkSpeed = channel.getRemoteInterface().getLinkSpeed(); if (linkSpeed > maxBandwidth) { maxBandwidth = linkSpeed; maxBandwidthChannel = channel; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/MultiChannelIntegrationTest.java
assertEquals("test-channel", channel.getChannelId()); assertEquals(mockTransport, channel.getTransport()); assertEquals(localNic, channel.getLocalInterface()); assertEquals(remoteNic, channel.getRemoteInterface()); assertEquals(ChannelState.ESTABLISHED, channel.getState()); assertTrue(channel.isHealthy()); // Test metrics channel.incrementRequestsSent();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 8.2K bytes - Viewed (0)