- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getDurableHandleTimeout (0.28 seconds)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isUsePersistentHandles(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getDurableHandleTimeout() */ @Override public long getDurableHandleTimeout() { return this.delegate.getDurableHandleTimeout(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getHandleReconnectRetries() */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24.1K bytes - Click Count (0) -
docs/smb3-features/02-persistent-handles-design.md
} else if (tree.getSession().supports(SMB2_1)) { handleType = HandleType.DURABLE_V1; } else { return; // No durable handle support } long timeout = config.getDurableHandleTimeout(); Smb2LeaseKey leaseKey = getLeaseKey(); // Get associated lease if any handleGuid = handleManager.requestDurableHandle(getPath(), handleType,
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 31.6K bytes - Click Count (0) -
src/main/java/jcifs/Configuration.java
/** * Property {@code jcifs.smb.client.durableHandleTimeout}, defaults to 120000 * * @return timeout for durable handles in milliseconds */ long getDurableHandleTimeout(); /** * Property {@code jcifs.smb.client.handleReconnectRetries}, defaults to 3 * * @return maximum number of retry attempts for handle reconnection */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.useDurableHandles; } @Override public boolean isUsePersistentHandles() { return this.usePersistentHandles; } @Override public long getDurableHandleTimeout() { return this.durableHandleTimeout; } @Override public int getHandleReconnectRetries() { return this.handleReconnectRetries; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0)