Chromium Embedded Framework (CEF)
128.4.2+g5c235a2+chromium-128.0.6613.18
|
Class that asynchronously executes tasks on the associated thread. More...
#include "include/cef_task.h"
Public Member Functions | |
virtual bool | IsSame (CefRefPtr< CefTaskRunner > that)=0 |
Returns true if this object is pointing to the same task runner as |that| object. More... | |
virtual bool | BelongsToCurrentThread ()=0 |
Returns true if this task runner belongs to the current thread. More... | |
virtual bool | BelongsToThread (CefThreadId threadId)=0 |
Returns true if this task runner is for the specified CEF thread. More... | |
virtual bool | PostTask (CefRefPtr< CefTask > task)=0 |
Post a task for execution on the thread associated with this task runner. More... | |
virtual bool | PostDelayedTask (CefRefPtr< CefTask > task, int64_t delay_ms)=0 |
Post a task for delayed execution on the thread associated with this task runner. More... | |
Public Member Functions inherited from CefBaseRefCounted | |
virtual void | AddRef () const =0 |
Called to increment the reference count for the object. More... | |
virtual bool | Release () const =0 |
Called to decrement the reference count for the object. More... | |
virtual bool | HasOneRef () const =0 |
Returns true if the reference count is 1. More... | |
virtual bool | HasAtLeastOneRef () const =0 |
Returns true if the reference count is at least 1. More... | |
Static Public Member Functions | |
static CefRefPtr< CefTaskRunner > | GetForCurrentThread () |
Returns the task runner for the current thread. More... | |
static CefRefPtr< CefTaskRunner > | GetForThread (CefThreadId threadId) |
Returns the task runner for the specified CEF thread. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from CefBaseRefCounted | |
virtual | ~CefBaseRefCounted () |
Class that asynchronously executes tasks on the associated thread.
It is safe to call the methods of this class on any thread.
CEF maintains multiple internal threads that are used for handling different types of tasks in different processes. The cef_thread_id_t definitions in cef_types.h list the common CEF threads. Task runners are also available for other CEF threads as appropriate (for example, V8 WebWorker threads).
|
pure virtual |
Returns true if this task runner belongs to the current thread.
|
pure virtual |
Returns true if this task runner is for the specified CEF thread.
|
static |
Returns the task runner for the current thread.
Only CEF threads will have task runners. An empty reference will be returned if this method is called on an invalid thread.
|
static |
Returns the task runner for the specified CEF thread.
|
pure virtual |
Returns true if this object is pointing to the same task runner as |that| object.
|
pure virtual |
Post a task for delayed execution on the thread associated with this task runner.
Execution will occur asynchronously. Delayed tasks are not supported on V8 WebWorker threads and will be executed without the specified delay.
Post a task for execution on the thread associated with this task runner.
Execution will occur asynchronously.