Re: Workers

2008/8/27 Ian Hickson <ian@hixie.ch>:
>> * Some applications may very well wish to limit or restrict user input
>> until the queue can accept more work. For example:
>>
>> while (Window.WorkerLimitMet) {
>>    Form1.SubmitButton.Enabled = false;
>>    sleep(100);
>> }
>
> Users are quite capable of noticing when their computer is under load, I
> don't think it makes sense to artificially limit how much work the
> computer can do like this.
>

Yes, they notice that the page doesn't work, and "to fix it", they
press the same button several more times, just in case the first time
the browser didn't thought that they did wanted to submit the form. It
gets on my nerves whenever I see such behavior, but so far I haven't
been sucessful in order to make them understand that clicking it again
won't fix anything, just make things worse.

I'm not stating anything about the Workers themselves, I haven't
studied them and I don't know if that example is valid or not.

Received on Wednesday, 27 August 2008 10:43:25 UTC