| 110 | : maxSize_(maxSize), elasticity_(elasticity) {} |
| 111 | virtual ~Cache() = default; |
| 112 | size_t size() const { |
| 113 | Guard g(lock_); |
| 114 | return cache_.size(); |
| 115 | } |
| 116 | bool empty() const { |
| 117 | Guard g(lock_); |
| 118 | return cache_.empty(); |
no outgoing calls