RESOLVED FIXED 270320
Simplify use of sendWithPromisedReplyOnDispatcher
https://bugs.webkit.org/show_bug.cgi?id=270320
Summary Simplify use of sendWithPromisedReplyOnDispatcher
Jean-Yves Avenard [:jya]
Reported 2024-02-29 14:12:27 PST
When using sendWithPromisedReplyOnDispatcher you need to specify the WorkQueue twice like so: `connection.sendWithPromisedReplyOnDispatcher(message, workqueue)->whenSettled(workqueue, [] { })` the first SerialFunctionDispatcher is used to determined with the Message's IPC Decoder needs to run and the 2nd on where the callback will run. The 1st SerialFunctionDispatcher should be able to be deducted from the second. This can now be achieved easily following bug 270282. and so you could write: `connection.sendWithPromisedReply(message)->whenSettled(workqueue, [] { })` The decoder would be automatically first dispatched when a completion handler is attached to the promise.
Attachments
Radar WebKit Bug Importer
Comment 1 2024-02-29 14:12:54 PST
Jean-Yves Avenard [:jya]
Comment 2 2024-02-29 21:54:53 PST
EWS
Comment 3 2024-03-06 15:08:57 PST
Committed 275764@main (bb6155442858): <https://commits.webkit.org/275764@main> Reviewed commits have been landed. Closing PR #25335 and removing active labels.
Note You need to log in before you can comment on or make changes to this bug.