Synchronizer
Synchronizer
#include <icy/synchronizer.h>Inherits:
Runner
Synchronizer enables any thread to communicate with the associated event loop via synchronized callbacks.
This class inherits the [Runner](icy-Runner.html#runner) interface and may be used with any implementation that's powered by an asynchronous [Runner](icy-Runner.html#runner).
Public Methods
| Return | Name | Description |
|---|---|---|
Synchronizer | Creates a synchronizer attached to the given event loop without a callback. Call [start()](#start-5) separately to register the callback before using [post()](#post). | |
Synchronizer | Creates and immediately starts a synchronizer with a single callback function. The target is invoked from the event loop context each time [post()](#post) is called. | |
Synchronizer inline explicit | Creates and immediately starts a synchronizer with a variadic callback. | |
~Synchronizer virtual | Destructor. | |
void | post | Send a synchronization request to the event loop. Call this each time you want the target method called synchronously. The synchronous method will be called on next iteration. This is not atomic, so do not expect a callback for every request. |
void | start inline | Starts the synchronizer with a variadic callback function. The callback is invoked from the event loop each time [post()](#post) is called. Throws std::logic_error if already running or if the handle is null. |
void | start virtual | Starts the synchronizer with a std::function callback. Overrides [Runner::start](icy-Runner.html#start-3); delegates to the variadic start template. |
void | cancel virtual | Cancels the synchronizer, signalling the associated callback to stop. A subsequent [post()](#post) is needed to wake up the event loop so it can process the cancellation. |
void | close virtual | Cancels the synchronizer and closes the underlying uv_async_t handle. Safe to call multiple times; no-op if already closed. |
uv::Handle< uv_async_t > & | handle | Returns a reference to the underlying libuv async handle. |
Synchronizer
Synchronizer(uv::Loop * loop)Creates a synchronizer attached to the given event loop without a callback. Call [start()](#start-5) separately to register the callback before using [post()](#post).
Parameters
loopEvent loop to attach the async handle to.
Synchronizer
Synchronizer(std::function< void()> target, uv::Loop * loop)Creates and immediately starts a synchronizer with a single callback function. The target is invoked from the event loop context each time [post()](#post) is called.
Parameters
targetCallback to invoke on each event loop wakeup.loopEvent loop to attach the async handle to.
Synchronizer
inline explicit
template<typename Function, typename... Args> inline explicit Synchronizer(Function && func, Args &&... args, uv::Loop * loop)Creates and immediately starts a synchronizer with a variadic callback.
Parameters
FunctionCallable type.ArgsArgument types forwarded to the function.
Parameters
funcCallable to invoke on each event loop wakeup.argsArguments forwarded tofunc.loopEvent loop to attach the async handle to.
~Synchronizer
virtual
virtual ~Synchronizer()Destructor.
post
void post()Send a synchronization request to the event loop. Call this each time you want the target method called synchronously. The synchronous method will be called on next iteration. This is not atomic, so do not expect a callback for every request.
start
inline
template<typename Function, typename... Args> inline void start(Function && func, Args &&... args)Starts the synchronizer with a variadic callback function. The callback is invoked from the event loop each time [post()](#post) is called. Throws std::logic_error if already running or if the handle is null.
Parameters
FunctionCallable type.ArgsArgument types forwarded to the function.
Parameters
funcCallable to invoke on each event loop wakeup.argsArguments forwarded tofunc.
start
virtual
virtual void start(std::function< void()> func)Starts the synchronizer with a std::function callback. Overrides [Runner::start](icy-Runner.html#start-3); delegates to the variadic start template.
Parameters
funcCallback invoked from the event loop on each[post()](#post)call.
cancel
virtual
virtual void cancel()Cancels the synchronizer, signalling the associated callback to stop. A subsequent [post()](#post) is needed to wake up the event loop so it can process the cancellation.
close
virtual
virtual void close()Cancels the synchronizer and closes the underlying uv_async_t handle. Safe to call multiple times; no-op if already closed.
handle
uv::Handle< uv_async_t > & handle()Returns a reference to the underlying libuv async handle.
Returns
Reference to the [uv::Handle](icy-uv-Handle.html#handle-6)<uv_async_t>.
Protected Attributes
| Return | Name | Description |
|---|---|---|
uv::Handle< uv_async_t > | _handle |
_handle
uv::Handle< uv_async_t > _handleProtected Methods
| Return | Name | Description |
|---|---|---|
bool | async virtual const | Returns true if the implementation is thread-based. |
async
virtual const
virtual bool async() constReturns true if the implementation is thread-based.
Returns
True for thread-backed runners, false for event-loop-driven runners.
