// This file Copyright © 2007-2022 Mnemosyne LLC. // It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only), // or any future license endorsed by Mnemosyne LLC. // License text can be found in the licenses/ folder. #pragma once #ifndef __TRANSMISSION__ #error only libtransmission should #include this header. #endif #include #include #include #include struct event_base; class tr_session_thread { public: static void tr_evthread_init(); static std::unique_ptr create(); virtual ~tr_session_thread() = default; [[nodiscard]] virtual struct event_base* eventBase() noexcept = 0; [[nodiscard]] virtual bool amInSessionThread() const noexcept = 0; virtual void run(std::function&& func) = 0; template void run(Func&& func, Args&&... args) { run(std::function{ [func = std::forward(func), args = std::make_tuple(std::forward(args)...)]() { std::apply(std::move(func), std::move(args)); } }); } };