(&self)
| 349 | |
| 350 | impl ListFilesCache for DefaultListFilesCache { |
| 351 | fn cache_limit(&self) -> usize { |
| 352 | let state = self.state.lock().unwrap(); |
| 353 | state.memory_limit |
| 354 | } |
| 355 | |
| 356 | fn cache_ttl(&self) -> Option<Duration> { |
| 357 | let state = self.state.lock().unwrap(); |
no outgoing calls