Tagged Questions
The waiting tag has no wiki summary.
7
votes
4answers
225 views
Pizza, Threading, Waiting, Notifying. What does it mean?
I have two methods (in C#):
List<Pizza> CookPizza(List<Order>);
List<HappyCustomers> DeliverPizza(List<Pizza>);
These operations have no common objects (aside from the ...
2
votes
3answers
131 views
Perform a task (in iOS) after animation has finished
So I have this line of code:
[tableView setContentOffset:point animated:YES];
and I want to run another piece of code after the animation ends. My attempt was to throw the animating code ...
2
votes
1answer
78 views
How to Implement the Server Waiting Loop(s) for Multiple Client Connections
I'm working on a Client-Server project. It should be able to handle multiple (>1000) client connections.
The main skeleton of my server-side waiting loop looks like this:
while(server->running)
...
2
votes
8answers
155 views
What to do when waiting for an application to compile? [closed]
I find that local builds will some times take 5-10 minutes of an application we are working on, but I always feel a little icky about going on line during that time... kind of like now ;).
What do ...
1
vote
1answer
40 views
Does a thread of execution goes to “waiting” state by executing wait() and join() both?
There are 3 states for a thread that is alive but is neither running not runnable:-
Sleeping
Blocked
Waiting
When a thread executes sleep() method, it goes into SLEEPING state from running state ...
1
vote
1answer
59 views
Where can I find a variety of “while you wait” spinning gear cog gif images
I am looking for an image generator for images that:
Look like cogs, wheels, progress bars, etc.
Spin.
Are small, less than 20-30 pixels. 16 might be good, i.e. 'icon size'
Are simple, just 2D no ...
1
vote
2answers
36 views
Design pattern for Page A waiting for Page B
Sorry if this question is asked before, but I have no idea what this design call.
I have a page A, with a Link in it.
Click on the link, will open page B in NEW WINDOW/NEW TAB.
Page A now shows a ...
1
vote
1answer
225 views
How to setup an intermediate (waiting/processing) page while the servlet finishes its work
We are using Java JSP / Servlet technology. When a user submits a form on our website, the form is processed by a servlet, which takes 5 to 15 seconds to finish its work and send the results back to ...
1
vote
1answer
243 views
Simulating Poisson Waiting Times - Java
I need to simulate Poisson wait times. I've found many examples of simulating the number of arrivals, but I need to simulate the wait time for one arrival, given an average wait time.
I keep finding ...
1
vote
3answers
208 views
C++ waiting a frame before carrying out an action
How would you wait a frame in c++.
I don't want the program to sleep or anything.
It would go soemthing like
Do this in this frame (1)
Continue with rest of program
Do this in the next frame (2)
...
1
vote
3answers
259 views
Waiting until a file is available for reading with Win32
I'm watching a directory by calling ReadDirectoryChangesW synchronously. When a new file is available, I try to access it immediately with CreateFile with GENERIC_READ and FILE_SHARE_READ, but this ...
0
votes
3answers
37 views
Language C: My program keeps waiting dont even show the first printf ! why?
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <stdio.h>
#include <sys/ipc.h>
#include <time.h>
#include <sys/msg.h>
#include ...
0
votes
2answers
88 views
How to diagnose or lower “waiting” time for web content?
I keep seeing inconsistent performance on a server of mine, and I'm finding it hard to diagnose/fix the problem. For the most part, pages load quickly, but 10-20% of the time they load very slowly. In ...
0
votes
5answers
136 views
How to make a thread wait until a variable reaches one of a set of values in .NET/Csharp
I've written a class that has a property of type TProperty and an event of type Action<TProperty> that fires whenever that property changes. TProperty is typically an enum type, but that ...
0
votes
0answers
81 views
Display a waiting panel on keypress
In my iPhone application, the users are banging the buttons several times. The web services are not responding fast enough to fill the panels. This is causing impatient users to hit the button ...
0
votes
2answers
225 views
C# Thread.Sleep() cause lag
Ok, i have problem in C#. In my script Threading.Sleep() cause lag, i think i'm doing something wrong, this is part of source:
case 2:
{
mouse_event(MOUSEEVENTF_LEFTDOWN, Pos.X, Pos.Y, 0, 0);
...
0
votes
1answer
142 views
C++ thread waiting times
IS there a way to get the time a thread has been WAITING during its life (in C++/windows)?
(i've asked before about the working time, but getting the waiting time would be much better :) )
Using ...
0
votes
2answers
83 views
Waiting for another application window
What is the best way (with a view to optimization and using system resources) to make waiting in my application when window of another app will be shown?
For example:
My application starts.
Waiting ...
0
votes
1answer
2k views
c# waiting for event within a function
My goal:
User should be able to get the html source of a page, when clicked on a button. This event opens a new form with a geckoWebBrowser component and navigates to a given url.
Once this is done it ...