If you move your mouse continually the query may not fail. Do not stop moving
support.microsoft.com
If you move your mouse continually the query may not fail. Do not stop moving
1–10 of 168 posts
Re: If you move your mouse continually the query may not fail. Do not stop moving
#2Re: If you move your mouse continually the query may not fail. Do not stop moving
#3Re: If you move your mouse continually the query may not fail. Do not stop moving
#4Re: If you move your mouse continually the query may not fail. Do not stop moving
#5It happened to me because I had a hidden window on the background thread to get WM events for USB disconnect and reconnect messages from the system. The bug report was funny. "Connecting USB data collection probe doesn't work unless the user moves the mouse after connecting." and the follow up bug "Data collection only works when moving the mouse."
Re: If you move your mouse continually the query may not fail. Do not stop moving
#6Method4: just turn off the screensaver/standby?
Re: If you move your mouse continually the query may not fail. Do not stop moving
#7Re: If you move your mouse continually the query may not fail. Do not stop moving
#8At first this may seem totally bullshitty: Imagine a download manager. Do you really want the download to pause every time you open a context menu? Well it turns out it is not such a bad idea in many cases: What if the context menu allows you to cancel the download? If the download were to go on in the background you would have to explicitly take care of that. If you tie the networking callbacks to your main runloop this simply can't happen.
Of course there are also a lot of use cases where you want your networking code to not have anything to do with your main runloop...
Re: If you move your mouse continually the query may not fail. Do not stop moving
#9[deleted]
Re: If you move your mouse continually the query may not fail. Do not stop moving
#10This reminds me a bit of how networking works on OS X and iOS (at least if you are using the "standard APIs" the way they are supposed to be used: The networking that is going on is tied to a runloop. Some apps tie the networking stuff to the main run loop. You can see which apps do that by simply opening a context menu in the app somewhere or open a regular menu from the app's main menu. The run loops will be "halte…
If you are running your network code in default mode on the main thread (problematic doing that and it's probably better to use async methods these days) then yes that can happen but it's usually programmer error.
On Mac, entering a modal window will usually put the runloop in a context that regular events won't fire and only those that mater to the modal window will fire. Commons mode almost always fires though.
I work on Apportable (YC2011) and we have reimplemented CFRunLoop/NSRunLoop down to the bare metal. A lot of misconceptions on how it works we find.