Returns if the file is enqueued to the tmp file available pool. The function is thread-safe.
| 293 | /// Returns if the file is enqueued to the tmp file available pool. |
| 294 | /// The function is thread-safe. |
| 295 | bool is_enqueued() { |
| 296 | std::lock_guard<SpinLock> l(lock_); |
| 297 | return enqueued_; |
| 298 | } |
| 299 | |
| 300 | /// Returns if the buffer is returned to the tmp file available pool. |
| 301 | /// The function is thread-safe. |
no outgoing calls
no test coverage detected