diff options
author | kleines Filmröllchen <filmroellchen@serenityos.org> | 2022-11-23 13:08:26 +0100 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-12-15 00:21:00 -0700 |
commit | 766944128266909e3f91c2090f25e4573ec405c8 (patch) | |
tree | 43ee32566aef5dc0b8d4858490e7e67b67107ef6 /Userland/Libraries/LibIPC | |
parent | 727fb305a82ffada6cb69f3f7cc38407e3256279 (diff) | |
download | serenity-766944128266909e3f91c2090f25e4573ec405c8.zip |
LibIPC: Add deferred invoker getter
Diffstat (limited to 'Userland/Libraries/LibIPC')
-rw-r--r-- | Userland/Libraries/LibIPC/Connection.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibIPC/Connection.h b/Userland/Libraries/LibIPC/Connection.h index 67e66139bd..42648fa8c4 100644 --- a/Userland/Libraries/LibIPC/Connection.h +++ b/Userland/Libraries/LibIPC/Connection.h @@ -42,6 +42,7 @@ public: void set_fd_passing_socket(NonnullOwnPtr<Core::Stream::LocalSocket>); void set_deferred_invoker(NonnullOwnPtr<DeferredInvoker>); + DeferredInvoker& deferred_invoker() { return *m_deferred_invoker; } bool is_open() const { return m_socket->is_open(); } ErrorOr<void> post_message(Message const&); |