You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There should be only one global timer running. In the wxpython.py example the
timer is created and destroyed in wx.App. But in chromectrl it is created for
each chrome window. Creating multiple timers that call CefMessageLoopWork
simultaneously might result in performance penalties and an undefined behavior.
Original issue reported on code.google.com by [email protected] on 30 Jul 2014 at 8:11
The text was updated successfully, but these errors were encountered:
Chromectrl creates a timer with given ID. Does calling wx.Timer() multiple
times given the same ID result only in one timer running? The timer ID is
currently = 1. What if other part of app assigns the same id? Should it be
unique?
Answering question from the post above. The timer is associated with "self"
which is ChromeWindow, so the ID uniqueness is not a problem. But still it
creates multiple timers for multiple ChromeWindow instances.
Original issue reported on code.google.com by
[email protected]
on 30 Jul 2014 at 8:11The text was updated successfully, but these errors were encountered: