Files
transmission/libtransmission/session-thread.h
Yat Ho 7de2aadb41 refactor: simplify session-thread.h with std::bind_front (#8262)
* chore: housekeeping

* refactor: simplify `session-thread.h` with `std::bind_front`
2026-01-29 08:06:23 -06:00

49 lines
1.3 KiB
C++

// This file Copyright © 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 <functional>
#include <memory>
#include <utility>
struct event_base;
class tr_session_thread
{
protected:
using callback_t = std::function<void()>;
public:
static void tr_evthread_init();
static std::unique_ptr<tr_session_thread> create();
virtual ~tr_session_thread() = default;
[[nodiscard]] virtual struct event_base* event_base() noexcept = 0;
[[nodiscard]] virtual bool am_in_session_thread() const noexcept = 0;
virtual void queue(callback_t&& func) = 0;
virtual void run(callback_t&& func) = 0;
template<typename Func, typename... Args>
void queue(Func&& func, Args&&... args)
{
queue(callback_t{ std::bind_front(std::forward<Func>(func), std::forward<Args>(args)...) });
}
template<typename Func, typename... Args>
void run(Func&& func, Args&&... args)
{
run(callback_t{ std::bind_front(std::forward<Func>(func), std::forward<Args>(args)...) });
}
};