Top "Thread-sleep" questions

The .net Thread.

How do I make a delay in Java?

I am trying to do something in Java and I need something to wait / delay for an amount of seconds …

java wait sleep thread-sleep
Android Sleep/Wait/Delay function

first of all, I'm a beginner to android world so please apologize me if it is stupid question.. I'm trying …

android delay sleep thread-sleep
How to put delay before doing an operation in WPF

I tried to use the below code to make a 2 second delay before navigating to the next window. But the …

c# wpf dispatcher thread-sleep
Sleep function in android program

Having some problem getting my program to sleep What im trying to do is when the btnStart is pressed firs …

java android thread-sleep
Making a Thread to Sleep for 30 minutes

I want to make my thread to wait for 30 minutes. Are there any problems of doing this?

java multithreading thread-sleep
make PHP wait until a function completes?

Is there any way to make PHP wait until a function returns before continuing? This is my code: <?php …

php wait thread-sleep
Make JavaFX wait and continue with code

Basically I am trying to make a short effect using JavaFX. I have the shape of a heart (added together …

javafx wait thread-sleep
Do sleep functions sleep all threads or just the one who call it?

I am programming with pthread on linux(Centos)? I wanna to threads sleep a short time to wait for something. …

c multithreading pthreads sleep thread-sleep
How to suspend a java thread for a small period of time, like 100 nanoseconds?

I know Thread.sleep() can make a java thread suspend for a while, like certain milliseconds and certain nanoseconds. But …

java sleep thread-sleep method-invocation nanotime
Sleep in loop when application is running, but sleeps too few

private static void Main(string[] args) { for (;;) { TemporaryCityTool.TemporaryCityTool.AddCity(); Console.WriteLine("waiting..."); Thread.Sleep(3600); } } why Thread.sleep not working. …

c# sleep thread-sleep