userver: userver/dynamic_config/updater/component_list.hpp Source File
Loading...
Searching...
No Matches
component_list.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/dynamic_config/updater/component_list.hpp
4/// @brief @copybrief dynamic_config::updater::ComponentList()
5
6#include <userver/components/component_list.hpp>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace dynamic_config::updater {
11
12/// @ingroup userver_components
13///
14/// @brief Returns list of components required to update configs in runtime.
15///
16/// The list contains:
17/// * @ref components::DynamicConfigClient
18/// * @ref components::DynamicConfigClientUpdater
19/// The list does not contain components from @ref clients::http::ComponentList and @ref
20/// components::MinimalComponentList
21components::ComponentList ComponentList();
22
23} // namespace dynamic_config::updater
24
25USERVER_NAMESPACE_END