blob: effd45b7946489b01334020170a9ab96cb8899ee (
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
#pragma once
#include <boost/smart_ptr/local_shared_ptr.hpp>
#include "include/types.h"
class OSDMap;
class OSDMapService {
public:
using cached_map_t = boost::local_shared_ptr<const OSDMap>;
virtual ~OSDMapService() = default;
virtual seastar::future<cached_map_t> get_map(epoch_t e) = 0;
/// get the latest map
virtual cached_map_t get_map() const = 0;
virtual epoch_t get_up_epoch() const = 0;
};
|