IBrowserProcessHandlerOnScheduleMessagePumpWork Method |
Version 101.0.180
Called from any thread when work has been scheduled for the browser process
main (UI) thread. This callback is used in combination with CefSettings.
ExternalMessagePump and Cef.DoMessageLoopWork() in cases where the CEF
message loop must be integrated into an existing application message loop
(see additional comments and warnings on Cef.DoMessageLoopWork). This
callback should schedule a Cef.DoMessageLoopWork() call to happen on the
main (UI) thread.
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 101.0.180.0 (101.0.180.0)
Syntax void OnScheduleMessagePumpWork(
long delay
)
void OnScheduleMessagePumpWork(
long long delay
)
Parameters
- delay
- Type: SystemInt64
is the requested delay in milliseconds. If
delay is less than or equal to 0 then the call should happen reasonably soon. If
delay is greater than 0 then the call should be scheduled to happen after the
specified delay and any currently pending scheduled call should be
cancelled.
See Also