Performs routine cleanup prior to executing a write. This should be called every time a write thread acquires the segment lock, immediately after acquiring the lock. Post-condition: expireEntries has been run.
(long now)
| 3499 | */ |
| 3500 | |
| 3501 | @GuardedBy("this") |
| 3502 | void preWriteCleanup(long now) { |
| 3503 | runLockedCleanup(now); |
| 3504 | } |
| 3505 | |
| 3506 | /** |
| 3507 | * Performs routine cleanup following a write. |
no test coverage detected