blob: 017303536dc07e856d0c71ed2a623ac59c111e3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#pragma once
#include "include/types.h"
#include "osd/OSDMap.h"
class OSDMap;
class OSDMapService {
public:
using cached_map_t = OSDMapRef;
using local_cached_map_t = LocalOSDMapRef;
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;
};
|