blob: 5b480c0e39c49bb6be63d556dcf69be07f64cccd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#pragma once
#include <string>
#include "common/ceph_time.h"
#include "rgw_notify_event_type.h"
// forward declarations
class RGWRados;
class req_state;
struct rgw_obj_key;
namespace rgw::notify {
// publish notification
int publish(const req_state* s,
const rgw_obj_key& key,
uint64_t size,
const ceph::real_time& mtime,
const std::string& etag,
EventType event_type,
RGWRados* store);
}
|