2026-01-27 09:06:40 -05:00
|
|
|
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-11-08 15:17:16 -05:00
|
|
|
|
|
|
|
|
#include "base/initialize.hpp"
|
2015-03-18 08:24:31 -04:00
|
|
|
#include "base/loader.hpp"
|
2014-11-08 15:17:16 -05:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2022-12-12 06:32:59 -05:00
|
|
|
bool icinga::InitializeOnceHelper(const std::function<void()>& func, InitializePriority priority)
|
2014-11-08 15:17:16 -05:00
|
|
|
{
|
2015-03-18 08:24:31 -04:00
|
|
|
Loader::AddDeferredInitializer(func, priority);
|
2014-11-08 15:17:16 -05:00
|
|
|
return true;
|
|
|
|
|
}
|