HikoGUI
Select Version: ⚠️ This documents the main development branch of HikoGUI. It might differ from release versions.
A low latency retained GUI
|
#include <hikogui/container/function_fifo.hpp>
Public Member Functions | |
function_fifo (function_fifo const &)=delete | |
function_fifo (function_fifo &&)=delete | |
function_fifo & | operator= (function_fifo const &)=delete |
function_fifo & | operator= (function_fifo &&)=delete |
bool | empty () const noexcept |
Check if there are not functions added to the fifo. | |
template<typename... Args> | |
auto | run_one (Args const &...args) noexcept |
Run one of the function that was posted or send. | |
void | run_all () noexcept |
Run all the functions posted or send on the fifo. | |
template<typename Func > | |
void | add_function (Func &&func) noexcept |
Asynchronously post a functor to the fifo to be executed later. | |
template<typename Func , typename... Args> requires (std::is_invocable_v<std::decay_t<Func>, std::decay_t<Args>...>) | |
auto | add_async_function (Func &&func, Args &&...args) noexcept |
Asynchronously send a functor to the fifo to be executed later. | |
A fifo (First-in, Firts-out) for asynchronous calls.
This fifo is used to handle asynchronous calls from an event-loop.
Proto | The std::function prototype. |
SlotSize | The size in bytes of each slot. This determines the maximum number of functions that can be stored on the fifo and if functions can be completely stored on the fifo or are allocated on the heap. |
|
inlinenoexcept |
Asynchronously send a functor to the fifo to be executed later.
The function object and arguments are stored within the fifo and does not need allocation. However the std::promise
object will allocate the return object on the heap as it must be shared with std::future
.
func | A function object. |
args | The arguments to pass to the function when called. |
std::future
with the result of func
. The result type may be void
.
|
inlinenoexcept |
Asynchronously post a functor to the fifo to be executed later.
The function object and arguments are stored within the fifo and does not need allocation.
func | A function object. |
|
inlinenoexcept |
Check if there are not functions added to the fifo.
|
inlinenoexcept |
Run all the functions posted or send on the fifo.
This function calls run_one()
until the fifo is empty.
|
inlinenoexcept |
Run one of the function that was posted or send.
true | One async function has been taken from the fifo and run. |
false | The fifo was empty. |