mirror of
https://github.com/Naios/continuable.git
synced 2025-12-06 16:56:44 +08:00
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _CALLBACK_H_
|
|
#define _CALLBACK_H_
|
|
|
|
#include <functional>
|
|
#include <utility>
|
|
#include <memory>
|
|
|
|
#include "functional_unwrap.hpp"
|
|
|
|
template<typename... Args>
|
|
using Callback = std::function<void(Args...)>;
|
|
|
|
template<typename... Args>
|
|
using SharedCallback = std::shared_ptr<Callback<Args...>>;
|
|
|
|
template<typename... Args>
|
|
using WeakCallback = std::weak_ptr<Callback<Args...>>;
|
|
|
|
namespace detail
|
|
{
|
|
template<typename... Args>
|
|
struct do_unwrap_callback;
|
|
|
|
template<typename... Args>
|
|
struct do_unwrap_callback<std::tuple<Args...>>
|
|
{
|
|
typedef Callback<Args...> CallbackType;
|
|
|
|
typedef SharedCallback<Args...> SharedCallbackType;
|
|
|
|
typedef WeakCallback<Args...> WeakCallbackType;
|
|
};
|
|
|
|
template<typename _CTy>
|
|
using unwrap_callback = do_unwrap_callback<::fu::argument_type_t<_CTy>>;
|
|
|
|
} // detail
|
|
|
|
template<typename _CTy>
|
|
typename detail::unwrap_callback<_CTy>::SharedCallbackType
|
|
make_shared_callback(_CTy&& callback)
|
|
{
|
|
return std::make_shared<typename detail::unwrap_callback<_CTy>::CallbackType>
|
|
(std::forward<typename detail::unwrap_callback<_CTy>::CallbackType>(callback));
|
|
}
|
|
|
|
#endif /// _TASK_SCHEDULER_H_
|