| 198 | public: |
| 199 | explicit ReadContextGuard(ReadContext &ctx) : ctx_(ctx) {} |
| 200 | ~ReadContextGuard() { |
| 201 | ctx_.reset(); |
| 202 | ctx_.detach(); |
| 203 | } |
| 204 | |
| 205 | ReadContextGuard(const ReadContextGuard &) = delete; |
| 206 | ReadContextGuard &operator=(const ReadContextGuard &) = delete; |