Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for loadPersistedHandles (0.3 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

            } catch (IOException e) {
                log.error("Failed to create handle state directory: " + stateDirectory, e);
            }
    
            // Load persisted handles on startup
            loadPersistedHandles();
    
            // Schedule periodic persistence and cleanup
            scheduler.scheduleAtFixedRate(this::periodicMaintenance, 30, 30, TimeUnit.SECONDS);
        }
    
        /**
         * Request a new durable handle
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. docs/smb3-features/02-persistent-handles-design.md

            } catch (IOException e) {
                log.error("Failed to create handle state directory", e);
            }
            
            // Load persisted handles on startup
            loadPersistedHandles();
            
            // Schedule periodic persistence
            scheduler.scheduleAtFixedRate(this::persistHandles, 30, 30, TimeUnit.SECONDS);
        }
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top