mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
Userland: Rename Core::Object to Core::EventReceiver
This is a more precise description of what this class actually does.
This commit is contained in:
parent
bdf696e488
commit
ddbe6bd7b4
128 changed files with 399 additions and 401 deletions
|
@ -25,10 +25,10 @@ public:
|
|||
size_t process();
|
||||
|
||||
// Posts an event to the event queue.
|
||||
void post_event(Object& receiver, NonnullOwnPtr<Event>);
|
||||
void post_event(EventReceiver& receiver, NonnullOwnPtr<Event>);
|
||||
|
||||
// Used by Threading::BackgroundAction.
|
||||
void add_job(NonnullRefPtr<Promise<NonnullRefPtr<Object>>>);
|
||||
void add_job(NonnullRefPtr<Promise<NonnullRefPtr<EventReceiver>>>);
|
||||
void cancel_all_pending_jobs();
|
||||
|
||||
// Returns true if there are events waiting to be flushed.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue