- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getMaxRetries (0.1 seconds)
-
src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java
+ "implemented by the concrete SMB file implementation"); } /** * Get the maximum number of retry attempts * @return the maximum retries */ public int getMaxRetries() { return maxRetries; } /** * Get the base retry delay * @return the retry delay in milliseconds */ public long getRetryDelay() { return retryDelay;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 8.5K bytes - Click Count (1) -
src/test/java/jcifs/tests/persistent/HandleReconnectorTest.java
assertEquals(2, reconnector.getMaxRetries()); } @Test public void testGetRetryDelay() { assertEquals(50, reconnector.getRetryDelay()); } @Test public void testDefaultConstructor() { HandleReconnector defaultReconnector = new HandleReconnector(mockManager); assertEquals(3, defaultReconnector.getMaxRetries());
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 5.6K bytes - Click Count (0)