A method that can be called on a given thread object to suspend its execution for a specified duration.
1
vote
3answers
58 views
JFrame leaking memory?
So today I opened Task Manager and saw that my application leaks 200kbs of memory every second. I looked at my main loop:
public final void run() {
try {
Thread.sleep(27);
} catch ...
-1
votes
0answers
18 views
Rendering in Applet doesn't work
I made a little program to test Applets. Sadly, it doesn't work completely.
The Application as Client-Program renders perfectly. Also, trying it using the Appletviewer works fine. But when uploading ...
3
votes
1answer
47 views
Thread not really sleeping?
I'm trying to disable a TextBox for couple of seconds after the user clicks Enter:
<StackPanel>
<TextBox x:Name="txt1" Width="150" Margin="10" KeyUp="txt1_KeyUp"/>
...
1
vote
1answer
48 views
Pause a simple timer
In Java how would I pause a simple timer?
This may be a bit of newbie question - I'm new to a lot of this. I have a simple pomodoro timer using Thread.sleep( MILLISECONDS ) , which runs repeatedly ...
0
votes
1answer
39 views
Visibly Moving JProgressBar
I have a JProgressBar and want to be able to see it dynamically updated. The progress bar should be able to visibly move from one position to another, not just change without the bar visibly changing ...
2
votes
1answer
83 views
Android Thread.sleep() in AsyncTask freeze UI
i'm tried many suggestions but nothing works! When i call Thread.sleep() in background thread, main thread also freezes for this time (Animation frame drop) :(
Version 1:
public void ...
0
votes
1answer
35 views
Show 30px high JPanel, then fill rest of space with minecraft
I am trying to make a JFrame with a 30px JPanel at the top, then add the Minecraft Applet underneath, Both need to resize automatically, I am trying to achieve this with a GridBagLayout, so far I ...
0
votes
2answers
35 views
Thread sleep in actionPerformed
I am trying to make a tiny program that has 3 buttons, all of them of white color. Pressing the first button (that has the text "Go!") will cause the second button to become orange for 3 seconds and ...
1
vote
1answer
35 views
repaint function not work when event happen
i am trying to change button background color for 10 time when event happen?
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
try ...
-1
votes
1answer
49 views
Java ArrayList — Threads
As part of a project that I work on (using Java), I face the following issue: I would like to display n values. For the purpose of explanation, n = 10 (1 to 10). I generate a random number (in the ...
1
vote
1answer
24 views
Is there a function or method to suspend the main thread for a specified amount of time?
Is there a wrapper function for Sleep / usleep in Qt that can be used in the main thread, or do I have to write my own wrapper? It's not a lot of code, but would be a shame to write my own if there ...
0
votes
2answers
36 views
Swing, update textfield value within a for
I'm trying to update my Java Swing form within a for. I tried many ways, but it wasn't working. This is what I last tried:
for(int i=0; i<10; i++) {
jTextField1.setText("" + i);
try {
...
0
votes
3answers
75 views
Expected red rectangle in frame, see nothing [closed]
Here's the code:
Class aa
package com.MahBonnets.Game;
import javax.swing.*;
public class aa {
public static ab f = new ab();
public static int width = 600;
public static int height = 400;
public ...
0
votes
1answer
38 views
Perform an action while sleeping [duplicate]
In python, is it possible to run code or perform an action while the script is sleeping like time.sleep()? What I want to do is print a message and gather input from the user only until 10 seconds ...
1
vote
1answer
68 views
Error 'this_thread': the symbol to the left of a '::' must be a type?
My headers:
#include <chrono>
#include <thread>
#include <iostream>
#include <string>
#include <fstream>
#include "include\curses.h"
My code problem:
...
2
votes
2answers
27 views
DocumentListener with Thread.sleep
I want to know when I am writing and when I am deleting, but, after a 0.5 second delay, it will tell me "You stopped writing/deleting" However, it only shows that message and it delete or write after ...
0
votes
0answers
25 views
Program craches after Sleep times out in a visual C++ DLL
I'm creating a C++ DLL in visual studio 2010. My DLL is using WINAPI to create some listener threads:
static DWORD WINAPI addNewListener(LPVOID args)
{
while(true)
{
//check some ...
2
votes
1answer
40 views
How to add a delay to a WPF program without blocking the UI
I am building a device emulator. When it starts, it takes some time for it to initialized. This would be logically represented by being turned on and going immediately to an "Initialization" state, ...
2
votes
1answer
69 views
Create thread within DLL
I'm working on a .NET profiler which I'm writing in c++ (a dll that uses ATL). I want to create a thread that writes into a file every 30 seconds. I want the thread function to be a method of one of ...
0
votes
1answer
103 views
Thread.Sleep Not Working with Silverlight 5 under Windows 8
Background: There is a development for vehicle dynamics, as an attempt to add realistic behavior, calculation results are performed real time with 1:1 scale to real life, i.e., 1 seconds in real life ...
0
votes
3answers
87 views
Thread.sleep behaving weirdly
I have the following code:
public Move chooseMove(Board board) {
// start parallel thread
this.tn = new TreeNode(this.myboard, this, null);
tn.stop = false;
this.curT = (new ...
0
votes
0answers
80 views
I m using java graphics2D to draw something like dynamic barchart
I m doing my project which is similar as a simulator: it can generate some dummy data randomly and use graph2D to draw a dynamic graph somehow like below:(they don't allow me post picture so...I draw ...
-2
votes
3answers
89 views
What is the point of this sleeping thread
I am going through some code right now that is not mine. In the code there is a thread with the following code:
while (true)
{
Thread.sleep(int.MaxValue);
}
It also catches ...
0
votes
3answers
83 views
How to synchronize Thread.sleep and Thread.interrupt in Java?
I would like to write a test to interrupt a thread when it is executing an interruptible call, e.g. Thread.sleep.
I would like to synchronize two threads: one thread calls Thread.sleep and another ...
1
vote
1answer
33 views
Any ways to park a Thread based on a free-running,system-clock-independent clock?
To make the current thread to park for a specified timeout,i can use:
LockSupport.parkNanos(long nanos);
or
Thread.sleep(long millis);//internally same as Object.wait(long) i guess.
...
0
votes
4answers
72 views
Destroying a thread, having a never ending function int its run() method?
In my run() method of my Thread class, I am calling a never ending function.
I need the thread to run only for a specific duration.
Am not able to control the thread once its started, Is their any ...
0
votes
1answer
154 views
Waiting for camera to save photo, what is better than thread.sleep?
I have a custom OpenCV camera activity that takes a photo when the screen is tapped. The activity is started with a startActivityForResult intent, and the filepath of the photo is handed back to the ...
0
votes
2answers
90 views
How to use a while loop for a TimerTask
I am new to Java-programming and got a question.
I created this code and now I want to insert a while loop so that the text changes every five seconds again.
I tried to insert a while statement and ...
1
vote
1answer
35 views
method or function to be blocked for a set about of time, Java, Android
what is a good and efficient way to make a method that will be callable once, and during a time period like 2 minutes, it is blocked from being called any more during the 2 minute interval. only ...
0
votes
1answer
74 views
How to resume it when i click resume button?
//Counter of time since app started ,a background task
private long mStartTime = 0L;
//Private long mPauseTime = 0L;
private TextView mTimerLabel;
//Handler to handle the message to the ...
0
votes
2answers
66 views
Java - issue with threads
Ok, I've only been learning java for around a week and decided I wanted to make a text based game.
Everything was running smoothly until I started using threads.
I want to be able to detect if the ...
-1
votes
2answers
169 views
How to put a child thread to sleep without freezing the UI thread in a WPF application?
I have a WPF application and I have individual threads running to accomplish tasks and I would like to have the current thread to go to sleep something like,
Thread.CurrentThread.Sleep(10000)
I ...
0
votes
2answers
106 views
Issue with sleep in Thread
On button click I am calling following function.
private void badButtonHandler() {
Camera.Parameters params = mCamera.getParameters();
...
1
vote
0answers
80 views
Running batch command gets stuck on Runtime.exec.waitFor()
I run a batch command from Java like this:
String command ="cmd /c " + mPathToZip + " a -tzip " + source
+ "foo.zip " + source + "* && exit";
try {
...
3
votes
2answers
128 views
Thread sleep inside of actionPerformed method
First of all I want to say I'm aware this aproach is wrong so I'm asking this question because of pure curiousity. Lets say I have a swing application like this:
import java.awt.BorderLayout;
import ...
0
votes
1answer
70 views
How To Put delay before doing an operation in wpf
The below code i have used to put 2 seconds delay before navigating to the next window. but the thread is invoking first and the textblock gets displayed for a microsecond and landed into the next ...
-1
votes
1answer
9 views
Pausing my App without stopping Display
Im trying to let my App wait for 5 seconds. But it doesnt matter if I use sleep() or wait() in my created thread, My screen always gets white and after the 5 seconds it does what it should. How can I ...
4
votes
5answers
440 views
TcpClient.Close() works only with Thread.Sleep()
Good day!
I have a very strange problem.
I have simple server that gets string from client and prints it on screen.
I also have simple client, sending data and closing:
static void Main()
{
...
1
vote
1answer
118 views
What will happen if you call interrupt() on a sleeping thread?
I have a thread, and on run() I call sleep(). What will happen if I interrupt this thread?
MyThread extends Thread{
public void run(){
try{
sleep(1000000);
} ...
-1
votes
1answer
294 views
Difference between timer task and threads in java (multi-thread) [closed]
I want to know the difference between timer task and sleep in a multi-threaded programs.
-1
votes
1answer
49 views
Pausing Windows Service thread?
Here's an overview of what I'm aiming for:
I have a Windows Service that will, on start, check a specific database on that server for any available queues. If a queue is found, it must start ...
0
votes
4answers
92 views
Android thread and getText() inside for loop not working?
I want to print a single word at a time in textView and then using sleep and then next word.
but it int'n working.. need help.
String s = MainActivity.check;// String check defined in ...
2
votes
1answer
101 views
Long Running Blocking Methods. Difference between Blocking, Sleeping, Begin/End and Async
This question is not about designs or patterns and which to use. The heart of this question is about what is happening regarding threads and blocking.
This example is to apply to any blocking method ...
1
vote
1answer
57 views
chaotic multithreading in Android
Here is my code:
public class MainActivity extends Activity {
private TextView view;
private Handler handler = new Handler();
@Override
protected void onCreate(Bundle ...
0
votes
0answers
85 views
Unable to come out of while loop created in thread
I am trying to get it done for last 3 days but still no success.
In my android application, I am having two activities. I go to activity 2 from 1 by clicking button. In onCreate event of activity two, ...
0
votes
2answers
124 views
How to “wait” without blocking in JavaScript? [duplicate]
Hi I'm a Javascript Newbie. I've programmed a script which auto types a phrase on a page, pauses for a while, clears the div, auto types the next phrase and so on. It should continuously loop.
I've ...
-2
votes
2answers
87 views
Thread within a Splash Screen
package com.example.test;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
public class Splash extends Activity {
private Intent myintent;
protected ...
-1
votes
1answer
47 views
how to know when the tonegenerator has stopped playing
I kneed to know when my tone generator has stopped playing.
I want to play the dtmf tone for 50 ms and then wait 50 to play the next tone.
i wanted to use this code.
private void playtones() {
...
0
votes
0answers
25 views
jcomponents not updating in real time [duplicate]
coding a tetris-y puzzle game. still just trying to make a skeleton of the game. single blocks "fall" from the top of the screen in the form of colored buttons. when the first block appears it's ...
1
vote
2answers
177 views
Changing images in a Loop - Android
I'm wondering why still I couldn't to figure out a way to do this. Although it seems like very simple, I spent my entire day for this. But couldn't do that.
I have set of dice images. ...





