Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for incrementEpoch (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

                this.leaseState = newState;
                this.lastAccessTime = System.currentTimeMillis();
            }
    
            /**
             * Increment the epoch value
             */
            public synchronized void incrementEpoch() {
                this.epoch++;
            }
    
            /**
             * Check if lease has read caching
             *
             * @return true if read caching is enabled
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. docs/smb3-features/01-smb3-lease-design.md

            public synchronized void updateState(int newState) {
                this.leaseState = newState;
                this.lastAccessTime = System.currentTimeMillis();
            }
            
            public synchronized void incrementEpoch() {
                this.epoch++;
            }
            
            public boolean hasReadCache() {
                return (leaseState & Smb2LeaseState.SMB2_LEASE_READ_CACHING) != 0;
            }
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top