Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
359 views

What's the most CPU-efficient way to “waste time” in a thread?

I have a number of threads (100's) that each execute for a few seconds at a time. When they are executing, they spend a significant amount of that time waiting for a response from another system (a ...
5
votes
5answers
190 views

Can I improve the resolution of Thread.Sleep?

Thread.Sleep() resolution varies from 1 to 15.6ms Given this console app: class Program { static void Main() { int outer = 100; int inner = 100; Stopwatch sw = new ...
5
votes
4answers
378 views

C# Thread sleep until a new day

I'm running a process in a loop which has a limit on the number of operations it does per day. When it reaches this limit I've currently got it checking the the time in a loop to see if it a new date. ...
5
votes
5answers
146 views

How to create a delay in Swing

I made a blackjack game, and I want the AI player to pause between taking cards. I tried simply using Thread.sleep(x), but that makes it freeze until the AI player is done taking all of his cards. I ...
4
votes
1answer
157 views

.NET Timers, do they fire at the exact interval or after processing + interval

So a simple enough question really. How exactly does the interval for System.Timers work? Does it fire 1 second, each second, regardless of how long the timeout event takes or does it require the ...
3
votes
4answers
78 views

What might be the purpose of sleeping for just to see if the thread gets interrupted?

I came across some Java code that has a method containing the following: static boolean waitForSeconds(long seconds) { try { Thread.sleep(seconds * 1000); } catch ...
3
votes
1answer
200 views

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 randomly set pictures to 12 ImageButtons Then i want it to pause for 5 secs and then change ...
3
votes
1answer
109 views

Waiting for completion of one-way WCF call in a C# console application

I have a WCF webservice (not under my control) that implements functionality I need to access via IsOneWay=true + a callback interface, one of the methods of which notifies of processing completion. ...
3
votes
1answer
59 views

What's the effect on a second request of calling Thread.currentThread().sleep(2000) in a Spring MVC request handler?

I need to wait for a condition in a Spring MVC request handler while I call a third party service to update some entities for a user. The wait averages about 2 seconds. I'm calling Thread.sleep to ...
3
votes
3answers
190 views

UnitTesting a threaded class, avoiding Thread.Sleep() in test?

I'm trying to figure out the best way to unit test this class: public class FileGroupGarbageCollector { private Task _task; private readonly AutoResetEvent _event = new ...
3
votes
2answers
149 views

Thread.sleep waits more than expected

The following code: long msBefore = System.currentTimeMillis(); //Thread.currentThread().setPriority(Thread.MAX_PRIORITY); try {Thread.sleep(200); } catch (InterruptedException e){} ...
2
votes
5answers
72 views

Problems with using Thread.Sleep for short times

I have an app with 2 threads (now), but it seems that function Thread.Sleep() doesn't work very good. It sleeps threads but it takes much more time (for example- I want to sleep it for 5ms and it ...
2
votes
5answers
97 views

Java: OutOfMemory using Robot#createScreenCapture(Rectangle)

I was writing a program for capturing the screen at a set interval and when I started testing, I found that I get an OutOfMemoryException almost immediately after it starts capturing pictures. I tried ...
2
votes
5answers
229 views

How to get rid of this “static method should be acessed in a static way” in java?

I have the following piece of code in a java application Thread.currentThread().sleep(10000); However eclipse is showing me the following warning: The static method sleep(long) from the type ...
2
votes
2answers
272 views

how to update a jLabel every time with a while loop with a delay

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { int count = jSlider1.getValue(); int delay = jSlider2.getValue(); int ...
2
votes
2answers
67 views

shouldnt the main thread start executing when other threads are put to sleep

In my opinion the output of this program can only be Hello 0 1 2 3 4 Yes But the answer lists 0 1 2 3 4 Hello Yes as a possible answer as well. My question is when the test is put to sleep, ...
2
votes
1answer
985 views

SystemClock.sleep() vs. Thread.sleep() while waiting for a semaphore loop

In order to synchronize/queue access to a shared resource, I am about to use a Semaphore, aided by a wait loop. In order not to run into CPU pegging, I would like to sleep() a little bit inside that ...
2
votes
6answers
486 views

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 ...
1
vote
4answers
116 views

Java Thread.sleep leaking threads?

So I inherited a bit of code that's waiting for communication from a network source. While it's waiting for more data from the network socket, Thread.sleep(10) is called. This appears to be causing ...
1
vote
4answers
79 views

Is it clearer to sleep near a function call in a loop or in the function call itself?

Is it clearer to sleep near a function call in a loop or in the function call itself? Personally I lean toward sleeping near the call rather than in the call, because there is nothing about ...
1
vote
1answer
57 views

boost python sleep wrapper causes whole python program to sleep

i have a multithreaded library in which i call sleep(3) in different threads. i have written python bindings for it using boost python. now it looks like boost python is messing up with the sleep(3) ...
1
vote
2answers
32 views

Thread.Sleep 'breaks' Task

So I have the following code Action d = () => { for (int i = 0; i <= 10; i++) ...
1
vote
1answer
172 views

Async CTP v3, MS Test and Thread.Sleep

I have a long running task method, using Sleep public Task LongRunning() { return Task.Factory.StartNew( () => { Trace.TraceInformation("Start Sleep"); ...
1
vote
2answers
141 views

How to cancel a background worker with sleep?

I'm having trouble canceling a background worker that has a Thread.Sleep(100) in it. private void backgroundWorker1_DoWork(object sender, System.ComponentModel.DoWorkEventArgs e) { int count; ...
1
vote
4answers
96 views

Waking a thread in C#

I am looking for a simple way to put a thread to sleep and to wake it. The thread runs in background in an infinite loop and sometimes does some work, sometimes just runs through. I have found out ...
1
vote
4answers
106 views

Spawning a task in c# and knowing when its finished

I have this compress video task that uses an external program to do it in c#. It takes some time for this compression to finish and the file to write out. I don't want to run the next piece of code ...
1
vote
6answers
409 views

Timer vs While Loop - Memory Usages

I am programming a type of game in C# and I want to know what would be a better approach for memory usage. Right now I have it so it goes through a while loop and while the game is running it will ...
1
vote
2answers
398 views

Android Development: Thread.sleep just slow down game

I have a: @Override public boolean onTouchEvent(MotionEvent event) { synchronized (event) { try { Thread.sleep(16); } catch (InterruptedException ...
1
vote
1answer
101 views

Problems with my Thread.sleep()

I'm creating a simple video poker program and right now I'm working on the action that's performed after the user has specified the cards he wants to hold, and replace the discarded cards with new ...
1
vote
2answers
88 views

sleep or wait()

Suppose that you have two threads using synchronized methods to share a buffer, one method for writing to the buffer and one for reading from it. If the reader thread finds the buffer empty, explain ...
1
vote
2answers
135 views

sleep command in threaded application

The Sleep(ms) command in windows is causing threads to release their timeslices. Is there an equivalent Sleep(ms) command that halts the thread but does not release the timeslice?
1
vote
5answers
569 views

VB.net Inconsistant Thread Sleep Timer

Ok so I have been playing with VB.net and brainstorming ways to accomplish launching a thread reliably every 60 seconds reguardless of how long the prior thread took to do it's work. Here is my ...
1
vote
1answer
2k views

forceLayout(), requestLayout()

My reading of the android documentation finds the methods forceLayout() (which is to produce a layout display at the next layout request) and requestLayout() (which is supposed to post an immediate ...
1
vote
2answers
754 views

Is it sane to use Thread.Sleep(int) in ASP.NET or should I use another method?

I want to introduce a slight wait during some testing functions, to simulate a server call. Is it sane to use Thread.Sleep(int) to introduce the wait or is there a better method to have the server ...
0
votes
0answers
30 views

Sleep command in Python

import time import thread def myfunc(string,sleeptime): while 1: print string time.sleep(sleeptime) thread.start_new_thread(myfunc,("Thread No:1",2)) This is a simple example ...
0
votes
2answers
24 views

Android: Stopwatch application crashes due to CalledFromWrongThreadException

Here's my code for a stopwatch application on Android: package com.google.labyrinth; public class Tabalicious extends Activity implements OnClickListener, Runnable { TextView ...
0
votes
0answers
50 views

NSThread wake up after sleepUntilDate

i'm developing an app which needs to sync their data every 10 seconds from the API. Therefore i'm using the NSOperation and the OperationQueue. Every 10 seconds the operation is requesting data from ...
0
votes
2answers
60 views

Combining repaint() with Thread.Sleep()

What im trying to do is pretty simple, I want to show the steps of an algorithm on the screen, hence why im trying to combine repaint() with sleep(), but I am doing it wrong, Id love it if someone ...
0
votes
0answers
59 views

Android - Inaccurate thread sleep

I tried to run this code by both android emulator and jvm. On JVM it sleeps 33-34 ms as it should be, however on android it is 68-85ms. Why is it so inaccurate ? Thank you for your help. package ...
0
votes
1answer
51 views

infinite threads java

I need to have a thread which checks for network connection availability on a JAVA desktop app. I got a thread like this class DataSyncThread extends Thread { DataSyncThread() { } ...
0
votes
2answers
84 views

Thread.Sleep() and constructor modification? [closed]

I'm trying to get the constructor of an object to initialize a field to something, pause for 30 seconds, and then set it to something else afterwards. Here is my code: namespace Practice { ...
0
votes
1answer
350 views

sleep() function

I'm working with a IOIO Android development board. I'm trying to control 2 pins and an led and swtich them on off at intervals times. So far, it connects fine and the led and pins are turning on and ...
0
votes
4answers
97 views

VB .net could not sleep() for very very less durations

I would like to sleep for packetSize/Bandwidth amount of duration for a network application in VB. This value varies from "10^-3 - 10^-6" seconds. When I use the Sleep() func, I think it is not ...
0
votes
3answers
96 views

sleep of non-blocking calls

I am looking for an optimum sleep value to receive data from a non-blocking socket. E.g: while True: data=s.recv(1024) if not data: time.sleep(10) #10ms else: pass #... ...
0
votes
2answers
45 views

Pausing the Current function for some time iphone

Hi all im trying to pause a function so some time in the middle of execution because ill have to wait for the call back functions from GData api and get my data ready to put in that function i dont ...
0
votes
1answer
77 views

Problem delaying doingbackground in asyncTask !

I have a problem using AsyncTask. I want my doing background send data to server via GET (success) BUT (Problem) when there is no connection i have to resend three time before save in my sqlite>? how ...
0
votes
4answers
132 views

c++ use thread as timer

I have my project with a different thread that make some stuff. It's all ok, but I wish have some function called each 20ms (for example), but considering the time spent to the function... I try to ...
0
votes
2answers
291 views

rotating an object in OpenGL ES , android platform

I have drawn a square in openGL ES on android platform , i just want to make the impression of it rotating for several times and i want to see the square while rotating. for(float i=0;i<1000;i++){ ...
0
votes
2answers
49 views

Make Thread sleep first before it runs

How can I make my thread sleep first before it runs? I know how to get sleep to work, however, whenever my program is run, the thread immediately runs. I want it to WAIT once it is first created to ...
0
votes
2answers
343 views

What happens to ACTIVITY threads if SCREEN OFF and disconnected from charger?

I have an application which works on a user's session which is maintained between the server and the device. I using a ping technique to keep the session alive between the device and server by pinging ...

1 2