- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getHandleReconnectRetries (0.33 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getDurableHandleTimeout(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getHandleReconnectRetries() */ @Override public int getHandleReconnectRetries() { return this.delegate.getHandleReconnectRetries(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isUseMultiChannel() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
return getBooleanProperty(USE_PERSISTENT_HANDLES, false); } public long getDurableHandleTimeout() { return getLongProperty(DURABLE_HANDLE_TIMEOUT, 120000); // 2 minutes } public int getHandleReconnectRetries() { return getIntProperty(HANDLE_RECONNECT_RETRIES, 3); } public String getHandleStateDirectory() { return getProperty(HANDLE_STATE_DIR,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * Property {@code jcifs.smb.client.handleReconnectRetries}, defaults to 3 * * @return maximum number of retry attempts for handle reconnection */ int getHandleReconnectRetries(); /** * Enable SMB3 Multi-Channel support * * Property {@code jcifs.smb.client.useMultiChannel} (boolean, default true) * * @return whether multi-channel is enabled
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.usePersistentHandles; } @Override public long getDurableHandleTimeout() { return this.durableHandleTimeout; } @Override public int getHandleReconnectRetries() { return this.handleReconnectRetries; } @Override public String getHandleStateDirectory() { return this.handleStateDirectory; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)