summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_trim_mdlog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rgw/rgw_trim_mdlog.h')
-rw-r--r--src/rgw/rgw_trim_mdlog.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/rgw/rgw_trim_mdlog.h b/src/rgw/rgw_trim_mdlog.h
new file mode 100644
index 000000000..3a4d14230
--- /dev/null
+++ b/src/rgw/rgw_trim_mdlog.h
@@ -0,0 +1,25 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab ft=cpp
+
+#pragma once
+
+class RGWCoroutine;
+class DoutPrefixProvider;
+class RGWRados;
+class RGWHTTPManager;
+class utime_t;
+namespace rgw { namespace sal {
+ class RGWRadosStore;
+} }
+
+// MetaLogTrimCR factory function
+RGWCoroutine* create_meta_log_trim_cr(const DoutPrefixProvider *dpp,
+ rgw::sal::RGWRadosStore *store,
+ RGWHTTPManager *http,
+ int num_shards, utime_t interval);
+
+// factory function for mdlog trim via radosgw-admin
+RGWCoroutine* create_admin_meta_log_trim_cr(const DoutPrefixProvider *dpp,
+ rgw::sal::RGWRadosStore *store,
+ RGWHTTPManager *http,
+ int num_shards);