From 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 20:24:20 +0200 Subject: Adding upstream version 14.2.21. Signed-off-by: Daniel Baumann --- src/rgw/rgw_period_puller.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/rgw/rgw_period_puller.h (limited to 'src/rgw/rgw_period_puller.h') diff --git a/src/rgw/rgw_period_puller.h b/src/rgw/rgw_period_puller.h new file mode 100644 index 00000000..9018d584 --- /dev/null +++ b/src/rgw/rgw_period_puller.h @@ -0,0 +1,20 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef CEPH_RGW_PERIOD_PULLER_H +#define CEPH_RGW_PERIOD_PULLER_H + +#include "rgw_period_history.h" + +class RGWRados; +class RGWPeriod; + +class RGWPeriodPuller : public RGWPeriodHistory::Puller { + RGWRados *const store; + public: + explicit RGWPeriodPuller(RGWRados* store) : store(store) {} + + int pull(const std::string& period_id, RGWPeriod& period) override; +}; + +#endif // CEPH_RGW_PERIOD_PULLER_H -- cgit v1.2.3