A list to keep a unique list of components to start with components::Run(), utils::DaemonMain() or components::RunOnce().
More...
#include <userver/components/component_list.hpp>
|
template<typename Component > |
ComponentList & | Append () & |
| Appends a component with default component name Component::kName.
|
|
template<typename Component > |
ComponentList & | Append (std::string name) & |
| Appends a component with a provided component name.
|
|
ComponentList & | AppendComponentList (ComponentList &&other) & |
| Merges components from other into *this .
|
|
ComponentList && | AppendComponentList (ComponentList &&other) && |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
template<typename Component , typename... Args> |
ComponentList && | Append (Args &&...) && |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
bool | Contains (std::string_view name) const |
|
template<typename Component , typename... Args> |
ComponentList && | Append (Args &&... args) && |
|
◆ Append() [1/3]
template<typename Component >
Appends a component with default component name Component::kName.
- Examples
- postgresql/functional_tests/basic_chaos/postgres_service.cpp, samples/config_service/config_service.cpp, samples/flatbuf_service/flatbuf_service.cpp, samples/grpc_service/grpc_service.cpp, samples/hello_service/hello_service.cpp, samples/http_caching/http_caching.cpp, samples/mongo_service/mongo_service.cpp, samples/postgres_auth/postgres_service.cpp, samples/postgres_service/postgres_service.cpp, samples/production_service/production_service.cpp, samples/redis_service/redis_service.cpp, samples/tcp_full_duplex_service/tcp_full_duplex_service.cpp, samples/tcp_service/tcp_service.cpp, and samples/websocket_service/websocket_service.cpp.
Definition at line 173 of file component_list.hpp.
◆ Append() [2/3]
template<typename Component , typename... Args>
ComponentList && components::ComponentList::Append |
( |
Args &&... |
args | ) |
&& |
◆ Append() [3/3]
template<typename Component >
ComponentList & components::ComponentList::Append |
( |
std::string |
name | ) |
& |
◆ Contains()
bool components::ComponentList::Contains |
( |
std::string_view |
name | ) |
const |
|
inline |
- Returns
- true iff the component with provided name was added to *this.
Definition at line 154 of file component_list.hpp.
The documentation for this class was generated from the following file: