blob: 9018d5841dab19794cd86b1b8a05d55505b789b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|