In programming, 'wait' refers to the act of pausing the execution of a programm until a specific condition is met or a given amount of time has passed.
0
votes
0answers
20 views
Analog to WaitHandle.WaitAny with large number of wait handles?
I may need to call WaitHandle.WaitAny on a variable number of handles and although in my current implementation I do not envision having more than 64 wait handles, a user may technically specify that ...
0
votes
1answer
75 views
Don't know how use wait() and notify() in Java [duplicate]
I want to make something inside a thread that return what he did as string, and I'd like to wait for that string to do other thins. I've been reading about wait() and notify() but I dint get it. Can ...
0
votes
1answer
40 views
Android dialog pause activity
I want to show dialog and it will pause activity . To wait user turn on the GPS . After that it can query database to fill the list .
The picture below description what I want to do
And ...
1
vote
0answers
23 views
Setting GPS and waiting for enable
I have a problem with setting GPS service . I want to check if GPS is enable . If it is disable , it will display a dialog to user turn it on . The problem is it not wait for user enable GPS and get ...
0
votes
0answers
34 views
I want to run a script multiple times sequentially in python
I have a python script which basically calls a few functions, but takes quite a while to complete. I want to be able to run this script many times on a loop.
I need the script to wait until it's ...
1
vote
1answer
53 views
How to make javascript wait until it gets a valid response from synchronous http request?
I know it is not a good idea to use synchronous requests but this is the case that I really need it.
I have tried to make getEndDate function calling to itself if response lenght is less than 20 but ...
0
votes
0answers
29 views
Semaphore with 0 value doesn't block thread after wait call
I'm new to semaphore.h and I have a small question.
...
sem_t semaphore;
sem_init(&semaphore, 1, 0);
sem_wait(&semaphore);
...
That is a part of my code.
I init my semaphore with zero ...
0
votes
1answer
44 views
wait(0.5) is there a way? --fflush() block stop stdin ??? HALF SOLVED
the objective is to make workin() a low priority thread while other really heavy calculations are being made
2- is there a way to make a wait() of, lets say, 0.5 seconds ??
1- is it possible to ...
0
votes
2answers
27 views
making processRequest wait to another thread to end
I'm searching for a better solution for the following code,
I've a servlet that must process a request when the user presses one button,
before to do anything I want my function to wait for another ...
1
vote
2answers
35 views
Wait for event from SqlListener
I have implemented a SqlListener class that uses SqlDependency to wait for changes in SQL database. At one point in my business workflow I need to wait for a record turning up in the database. The ...
2
votes
0answers
60 views
WaitForThreadpoolWaitCallbacks returns immediately without waiting
What am I doing wrong here that WaitForThreadpoolWaitCallbacks returns immediately without waiting?
HANDLE hEvent = CreateEvent(0, FALSE, FALSE, 0);
...
PTP_WAIT Pwa = ...
0
votes
1answer
54 views
What is the good solution for calling notifyAll?
I have a litle question about wait() and notifyAll() methods.
The code is simulating the 'Race' of two threads.
Let`s look at the code - the problem is that notifyAll() method do nothing with ...
1
vote
1answer
56 views
Waiting for multiple button inputs in Java Swing
Sorry from my bad english, not native speaker. I am working on a SimonSays Game on Java in a GUI. Im new to coding. I managed to make the aplication work on console, however its been a mess to make it ...
0
votes
1answer
41 views
Selenium webdriver Java how to wait until a link is present
I have a link that I press and then it runs some JS and a new link is generated on the page which has the text "View report"
How can I wait on the page until this link is present and clickable, or ...
0
votes
2answers
55 views
How use `cin` to pause the program for 10 seconds in C++
Exacly as stated in the subject: how use cin to wait(pause the program) for 10 seconds in C++. I would like to make it act simiral to java's Thread.wait.
EDIT:
I am asking about cin
0
votes
1answer
44 views
How do I pause a JFrame while another is running [duplicate]
I'm making a Server with a database inside, but while I'm loading the main JFrame and while I'm connecting to the database reading username & password from a .properties file I chosed to let the ...
0
votes
3answers
77 views
Better way to constantly run function periodically in C#
I have a C# program that is constantly checking for new additions to an online DB. I have this code to have it check every 10 seconds
static void Main(string[] args)
{
boolean run = ...
0
votes
2answers
53 views
Implement a pipe in C
I try to implement a pipe in C but I have a little problem:
Here is my function :
void commandeTube(char * c1, char * c2) {
int c1toc2[2];
int c2toPere[2];
pid_t pidc1, pidc2;
...
2
votes
1answer
38 views
Pause an exe with batch file
I don’t know if this is possible
But can I pause an exe and wait for a batch file to complete before resuming with the exe again?
0
votes
1answer
43 views
Synchronizing on a passed object, JFrame is freezing
I created JFrame which contains and InternalFrame which draws figures which are moving(each figure is another Thread) I wanted to pauseButtonmake it pause, so I wanted to synchronize them on the ...
0
votes
1answer
33 views
getURL get stuck, need a wait function
I am trying to use R to surf the web but I have a strange problem, lets say that I have a list named URLlist containing some URL. Here is my code
for (k in 1:length(URLlist)){
temp = ...
0
votes
1answer
55 views
How can wait_timeout/interactive_timeout be ignored?
My mySQL server is not respecting wait_timeout or interactive_timeout of 15 seconds. Queries just keep going and going past the respective 15 seconds. Below is the my.cnf -
[mysqld]
# Settings user ...
1
vote
1answer
29 views
firebird 2.5 wait for one trigger from another
In table 1 I have trigger 1 that inserts in table 3 with trigger 3 that uses results of trigger 2 in table 2.
Is there is a way in Firebird 2.5 to lunch trigger 1 in table 1 only after trigger 2 in ...
0
votes
4answers
86 views
put the current thread to sleep while waiting for another thread
At some point in my application, I want to put my main thread (ie., the currently executing thread) to sleep for some time or until the background has finished (and wakes it up), whichever comes ...
0
votes
1answer
29 views
IOS: UIAlertView “Please Wait” and NSURLConnection
In my ViewDidLoad I call UiAlertView "Getting data. Please Wait...." and a NsTimer scheduledTimerWithTimeInterval 5 sec.
After this I create a method GetData with NSURLConnection to get data from ...
1
vote
0answers
54 views
I can't figure out what is wrong with my semaphore implementation
I need to implement producers and consumers in C89 using semaphores.
I will admit this is for a school assignment, so I am going to use mostly pseudocode.
It took me forever to simplify my code, so ...
0
votes
1answer
55 views
make button wait for user input before continuing
I’ve gotten into a spot of trouble and cant figure my way out
I’m trying to click a button and then get the user to type an input in textboxs, 7 and 8, then reuse the textboxes 7 and 8 to get the ...
0
votes
6answers
85 views
Java: How can the wait() and notify() methods be called on Objects that are not threads?
Using Java:
How can the wait() and notify() methods be called on Objects that are not Threads? That doesn't really make sense, does it?
Surely, it must make sense, however, because the two methods ...
0
votes
2answers
67 views
python to wait for shell command to complete
I am running script to unrar some files and the remove the rar files afterwards.
I am doing this by running the command through shell. I have tried several different ways to make the script wait ...
0
votes
1answer
52 views
Can you call Wait() on a task multiple times?
I want to run initializations of some objects asynchronously, but some objects depend on others being initialized. And then all objects need to be initialized before the rest of my application ...
2
votes
1answer
75 views
Avoid zombies when father is in a wait of a semaphore
This is a strange question. I have 2 different program:
server and client.
server start, alloc all the message queue and start to waitin for a signal from client (the signal is for tell to the server ...
0
votes
1answer
41 views
How to increase tests stability with Selenium RC
I am using seleniun RC for automation tests scripts. I use
selenium.waitForPageToLoad(DEFAULT_TIMEOUT);
but it is not stable and 50% of the time my tests fail because the next element after the ...
-12
votes
1answer
70 views
wait for button click before proceeding
I would like to have exact the same thing as in this link described.
I have a gridview with a template field (imagebutton).
If the user clicks on the button, my custom div (a custom msgbox) shows up ...
0
votes
0answers
80 views
Firing Maximo workflow event from code
In our Maximo workflow we have a few schemas in which work order reaches a Condition node with a check on a startdate. If current date is less than it's startdate then work order goes to a Wait node ...
-1
votes
1answer
39 views
Why does my notify() not work?
None of my notifyAll() methods appear to be working.
Lucy is suppose to wait until Bob arrives and then release.
Bob is suppose to wait for acknowledgement Lucy and then release.
Neither of these ...
3
votes
3answers
63 views
Java - Call wait() on an object and then allow object access to method
I have this method which takes a thread as a parameter. I want this method to be able to make a thread wait if there is not one waiting already and then wake up when another thread comes into the ...
0
votes
1answer
25 views
wait() system call - does the child ignore this?
So I've seen the following code during my revision. I know the wait() causes the parent to wait for the child to stop but I have a few questions regarding this.
Firstly, when the child is created, is ...
2
votes
2answers
49 views
DoEvents, Waiting, and Editing
I have a set of code that contains:
Application.Wait (Now + TimeValue("4:00:00"))
This is essentially pausing the macro for a four hour window from 3 AM (when it finishs running the code) till 7 AM ...
-3
votes
1answer
97 views
Java synchronized: wait() notify() [closed]
I want to make a java program with three threads: first and second print numbers from 0 to 99 by turns. Third gets control only when number multiply 10 (10, 20, 30 ..) and prints smth.
Im going to ...
2
votes
2answers
66 views
Wait function in VBscript HTML application
I am developing a html page in which I am using vbscript as scripting language i.e. VBScript in head section of html page. I want to insert the explicit wait in the execution of some function.
In ...
1
vote
3answers
54 views
Error when using wait() and fork() in c++
I'm trying to use wait() and fork() in my c++ code. but I get the following error in the compilation phase
../test/my_test.cpp: In member function 'void MYClass::myMethod()':
../test/my_test.cpp:98: ...
0
votes
2answers
174 views
Wait until file exists before continuing with program
I have a Delphi application plugin that shows a modal form. In the separate form's code, it calls another exe file to process some files, then closes. The second part of the plugin manipulates the ...
1
vote
3answers
116 views
Wait for n seconds, then next line of code without freezing form
Hi I am trying to find a method of waiting a number of milliseconds before moving to the next line of code,
I have looked into Thread.Sleep but this will freeze the main form, I would like this to ...
0
votes
0answers
58 views
SDL Tridion Publishing stuck on “wait for publish”
I am facing an issue in our SDL Tridion server related with publishing, when we publish few pages they get published successfully howevr after sometime the publishing is stuck on "wait for publish" ...
1
vote
2answers
74 views
Last line only partially prints in Java
I have some java code that compares two files. When it finds similar numbers on a particular line it prints that line to a new file. This seems to work for a good amount of time... Until what I ...
5
votes
1answer
95 views
Python implementation for Stop and Wait Algorithm
I am trying to implement a stop and wait algorithm. i have a problem in implementing the timeout at the sender. While waiting for an ACK from reciever, i am using the recvfrom() function. However this ...
0
votes
5answers
100 views
put the current thread to sleep and let others wake it
I have the follow method foo which takes an Observer and puts the current thread to sleep until the Observer wakes it up.
For some reason, I keep getting java.lang.IllegalMonitorStateException ...
0
votes
2answers
31 views
Order of waits and notify
Quick question I hope. If I call notify in an object in Java, is it guaranteed not to wake up any thread which waits (strictly) after I called notify. Or in other words, does notify only wake up ...
0
votes
2answers
215 views
Wait .5 seconds before continuing code VB.net
I have a code and I want it to wait somewhere in the middle before going forward.
After the WebBrowser1.Document.Window.DomWindow.execscript("checkPasswordConfirm();","JavaScript")
I want it to wait ...
0
votes
1answer
30 views
Splash screen is Blank when sleeping
I am trying to get the splash layout to appear for 5 seconds and then to switch over to the mainmenu layout. The screen is blank for about 5 seconds, and then the mainmenu layout pops up. If I just ...





