Method
stat
Source from the content-addressed store, hash-verified
| 129 | } |
| 130 | |
| 131 | SimpleDataPool::Stat SimpleDataPool::stat() const { |
| 132 | Stat s = { _size, _ncreated.load(butil::memory_order_relaxed) }; |
| 133 | return s; |
| 134 | } |
| 135 | |
| 136 | } // namespace brpc |
| 137 | |