cef_task_t

Implement this structure for asynchronous task execution. If the task is posted successfully and if the associated message loop is still running then the execute() function will be called on the target thread. If the task fails to post then the task object may be destroyed on the source thread instead of the target thread. For this reason be cautious when performing work in the task object destructor.

version(cef && embedded_cef_bindings)
extern (C)
struct cef_task_t {
extern (System)
void function(cef_task_t* self) nothrow execute;
}

Members

Variables

base
cef_base_ref_counted_t base;

Base structure.

Meta