Tagged Questions
The wait tag has no wiki summary.
14
votes
8answers
22k views
Bash: Sleep until a specific time/date
I want my bash-script to sleep until a specific time. So I want a command like "sleep" which takes no interval but a end-time and sleeps until then.
The "at"-deamon is no solution as I need to block ...
13
votes
3answers
3k views
Why wait should always be in synchronized block
We all know that in order to invoke Object.wait(), this call must be placed in synchronized block, otherwise IllegalMonitorStateException is thrown. But what's the reason for making this restriction? ...
13
votes
6answers
2k views
How to wait for exit of non-children processes
For child processes, the wait() and waitpid() functions can be used to suspends execution of the current process until a child has exited. But this function can not be used for non-child processes. ...
10
votes
5answers
33k views
How to use wait and notify in java?
I have 2 matrices and I need to multiply them and then print the results of each cell. As soon as one cell is ready I need to print it, but for example I need to print the [0][0] cell before cell ...
9
votes
6answers
4k views
IllegalMonitorStateException on wait() call
I am using multi-threading in java for my program.
I have run thread successfully but when I am using Thread.wait(), it is throwing java.lang.IllegalMonitorStateException.
How can I make a thread wait ...
8
votes
4answers
165 views
Wait task for x amount of time and report progress
I need a better design for sleeping Task than Thread.Sleep, I'm using the Task class.
In my wpf app i run a Task, this task runs another couple of tasks, each of this tasks first login to and ...
8
votes
3answers
125 views
Java wait()/join(): Why does this not deadlock?
Given the following Java code:
public class Test {
static private class MyThread extends Thread {
private boolean mustShutdown = false;
@Override
public synchronized ...
8
votes
4answers
4k views
How to write a loop in jQuery which waits for each function to complete before continuing the loop
Please forgive me if this is an obvious one.
I have an unknown amount of elements on a page, which I need to loop through one at a time and do stuff to. However, I need the loop to pause until the ...
8
votes
2answers
3k views
Lua - get command line input from user?
In my lua program, i want to stop and ask user for confirmation before proceeding with an operation. I'm not sure how to stop and wait for user input, how can it be done?
8
votes
4answers
917 views
Why do all Java Objects have wait() and notify() and does this cause a performance hit?
Every Java Object has the methods wait() and notify() (and additional variants). I have never used these and I suspect many others haven't. Why are these so fundamental that every object has to have ...
7
votes
3answers
115 views
CPU Usage and Object.wait
I was profiling my application using JProfiler and as result, in "CPU Views" section it shows that more than 40% of CPU time is spent on Object.wait(). However as far as I know on Object.wait() CPU is ...
7
votes
3answers
2k views
wait for each jQuery
I'm trying to make a div fade in/out that's within an each statement. The problem is that next item is called before the fade in/out is complete.
<script ...
7
votes
5answers
2k views
Why are wait() and notify() declared in Java's Object class?
Why are the wait() and notify() methods declared in the Object class, rather than the Thread class?
7
votes
3answers
3k views
WAIT for “any process” to finish
Is there any built in feature in bash to wait for any process to finish?
We use " wait" only for the child processes to finish.
I would like to know if there is any way to wait for any process to ...
7
votes
7answers
513 views
Is it better to poll or wait?
I have seen a question on why "polling is bad", but I am wonderring, in terms of minimizing the amount of processor time used by one thread, would it be better to do a spin wait (i.e. poll for a ...
6
votes
2answers
103 views
Do Windows Forms Applications busy wait for user inputs?
Normally windows forms applications proceeds execution as the user gives the input(s).
ex : Click a Button.
Until then does the application busy waits ? (go and check whether "a button" has been ...
6
votes
3answers
134 views
Java: Are all monitors released when thread waits on an object?
Before a thread can wait on an object, it has to acquire a monitor on that object. The monitor is then released, and the thread attempts to re-acquired it once it awakes.
But what happens to other ...
6
votes
4answers
3k views
How to wait for all tasks in an ThreadPoolExecutor to finish without shutting down the Executor?
I can't use shutdown() and awaitTermination() because it is possible new tasks will be added to the ThreadPoolExecutor while it is waiting.
So I'm looking for a way to wait until the ...
6
votes
2answers
3k views
c - fork() and wait()
I need to use the fork() and wait() functions to complete an assignment. We are modelling non-deterministic behaviour and need the program to fork() if there is more than one possible transition.
In ...
6
votes
2answers
2k views
Understanding Java Wait and Notify methods
I have a following program:
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class SimpleWaitNotify implements Runnable {
final static Object obj = new ...
6
votes
1answer
246 views
Explanation of Text on Threading in “C# 3.0 in a Nutshell”
While reading C# 3.0 in a Nutshell by Joseph and Ben Albahari, I came across the following paragraph (page 673, first paragraph in section titled "Signaling with Wait and Pulse")
"The Monitor ...
5
votes
8answers
166 views
wait until all threads finish their work in java
I'm writing an application that has 5 threads that get some information from web simultaneously and fill 5 different fields in a buffer class.
I need to validate buffer data and store it in a database ...
5
votes
3answers
166 views
Best way to do nothing until things are connected in C#
I was reviewing the code to connect to the DB in one of the applications that I'm working on and I saw this
if (_dbConnection == null)
_dbConnection = GetConnection();
while ...
5
votes
3answers
2k views
How to get PowerShell to wait for Invoke-Item completion?
How do I get PowerShell to wait until the Invoke-Item call has finished? I'm invoking a non-executable item, so I need to use Invoke-Item to open it.
5
votes
7answers
19k views
Blackberry - Loading/Wait screen with animation
Is there a way to show "Loading" screen with animation in blackberry?
Options:
PME animation content
multithreading + set of images + timer/counter
standard rim api
some other way
Any ...
4
votes
1answer
90 views
D taskpool wait untill all tasks are done
This is in relation to my previous question: D concurrent writing to buffer
Say you have a piece of code that consists of 2 consecutive code blocks A and B, where B depends on A. This is very common ...
4
votes
4answers
157 views
perl: can I wait 15 minutes, and then if a key has not been pressed, do something?
here's my first ever perl program:
I want to make sure that if I'm away from my machine for a while, then this script ssh's to our main server and kills all my processes there. (I keep forgetting to ...
4
votes
2answers
154 views
C++ wait problem
I have a code like this
if (pid > 0) {
// Child
} else {
// Parent
}
while (wait() > 0) {}
And there are includes
#include <cstdlib>
#include ...
4
votes
4answers
372 views
Python wait until data is in sys.stdin
my problem is the following:
My pythons script receives data via sys.stdin, but it needs to wait until new data is available on sys.stdin.
As described in the manpage from python, i use the ...
4
votes
2answers
191 views
How to wait for process that will be started?
My application need to wait until specific process will be started. I am doing it this way
while (Process.GetProcessesByName("someProcess").Length == 0)
{
Thread.Sleep(100);
}
Is there any ...
4
votes
4answers
201 views
Wait on Class Method to be finished C#
I need to Download a File from a Https Source.
I'll do this asynchron like this (works so far):
void doChecksbeforDownload(){
//Do some Checks
DownloadFileAsync();
}
void DownloadFileAsync(){
...
4
votes
7answers
419 views
using Object as a mutex in java
Hello there good poeple, I need some help.
I'm writing a music player which streams music from the web. If I pres the play button before the music is done buffering I want it to wait.
I tried doing ...
4
votes
1answer
153 views
php sql synchronous wait
I'm relatively new to web programming. I hope this one is easy. I've got a server app running that's monitoring a SQL table. Whenever an integer field turns positive, the app reads the rest of the ...
4
votes
6answers
262 views
Waiting on threads
I have a method that contains the following (Java) code:
doSomeThings();
doSomeOtherThings();
doSomeThings() creates some threads, each of which will run for only a finite amount of time. The ...
4
votes
3answers
2k views
Waiting for image to load in Javascript
I'm making an Ajax call which returns me some info including an image path.
I prepare all those informations in my HTML which will be displayed as a kind of popup. I just toggle the visibility of by ...
4
votes
3answers
2k views
jQuery: Handle fallback for failed AJAX Request
Can jQuery provide a fallback for failed AJAX calls? This is my try:
function update() {
var requestOK = false;
$.getJSON(url, function(){
alert('request successful');
...
4
votes
2answers
6k views
jQuery - Wait till end of SlideUp()
How can I wait till the end of the jQuery function slideUp() before continuing the script?
<script type="text/javascript">
$(document).ready(function() {
$("div[class=item]").click(function() ...
4
votes
6answers
954 views
Java - wait and notifyAll
What happens when you call notifyAll method on an object that is not waiting? Should there be exception or is it normal situation?
4
votes
2answers
1k views
Long UPDATE in postgresql
I have been running an UPDATE on a table containing 250 million rows with 3 index'; this UPDATE uses another table containing 30 million rows. It has been running for about 36 hours now. I am ...
3
votes
3answers
95 views
Wait() and Notify() concepts - Java Multithreading
class Q {
volatile boolean valueSet = false;
volatile int n;
synchronized int get () {
if ( !valueSet ) {
try {
wait();
} catch ( InterruptedException e ) {
...
3
votes
3answers
158 views
Wait until a certain process (knowing the “pid”) end
I have this:
def get_process():
pids = []
process = None
for i in os.listdir('/proc'):
if i.isdigit():
pids.append(i)
for pid in pids:
proc = ...
3
votes
4answers
313 views
C#: Wait until progressbar finished drawing [closed]
Possible Duplicate:
Winforms Progress bar Does Not Update (C#)
First time asking a question here for me.
I'll try to explain my problem using this code snippet:
progressBar1.Maximum = 50;
...
3
votes
1answer
85 views
Is there a way for MySQL to wait for rows matching a condition to be inserted
Let's say i was writing an aplication where'd i'd need to get notifications in real time from a server, and let's say those notifications are stored on a mysql database.
For me to get them i'd have ...
3
votes
1answer
95 views
how to practice good ethics while executing many curl requests in php
I have done a fair amount of reading on this and I am not quite sure what the correct way to go about this is.
I am accessing a websites api that provides information that I am using on my site. On ...
3
votes
2answers
133 views
Thread interrupt: will it cancel oncoming wait() call?
I have a thread which has an incoming job queue (a LinkedList containing job descriptions). The thread blocks with wait() on the queue when there's no job to work on. An external job dispatcher object ...
3
votes
1answer
103 views
What's the best way to wait for a Form to be closed in MS Access VBA?
I call a Form from a module, and would like to wait for the Form to be closed before completing the rest of that module. What is a proper way to do the waiting?
I have an IsOpen("formname") function ...
3
votes
5answers
326 views
Java: How can a thread wait on multiple objects?
A thread can use Object.wait() to block until another thread calls notify() or notifyAll() on that object.
But what if a thread wants to wait until one of multiple objects is signaled? For example, ...
3
votes
2answers
280 views
python threading: will Event.set() really notify every waiting thread
If I have a threading.Event and the following two lines of code...
event.set()
event.clear()
...and I have some threads who are waiting for that event.
My question is related to what happens when ...
3
votes
1answer
362 views
Synchronous Wait Without Blocking the UI-Thread
Is there a synchronous wait function that won't tie up the UI-thread in .NET WPF? Something like:
Sub OnClick(sender As Object, e As MouseEventArgs) Handles button1.Click
Wait(2000)
'Ui ...
3
votes
2answers
243 views
Any difference between kernel32.dll Sleep and Thread.Sleep()
Is there any difference(performance, implementation. .whatever) between the following:
i)
DllImport("kernel32.dll")]
public extern static void Sleep(uint msec);
..then call Sleep function
...