summaryrefslogtreecommitdiffstats
path: root/src/crimson/osd/osdmap_service.h
blob: 0a3aaed3c5ed5c2becfa1d51207ed65ad66aaf32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// -*- 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<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;
};