Tagged Questions
4
votes
1answer
68 views
when you terminate() a Thread (class TThread), does it exit every child of this thread?
I have a code in Delphi which does the following:
procedure THilo.Execute; // (which is the thread)
begin
inherited;
FreeOnTerminate := True;
while not Terminated do
begin
(...)
...
0
votes
5answers
75 views
Thread Runnable - stop and resume
Hello i'm new in Android(Java), and i have a problem with the use of thread
I define e new Thread timed (every 5 seconds) inside a class of my android Project.
The "mContinueThread" variable is used ...
1
vote
1answer
50 views
Android onPause thread freeze application
I want to make stopwatch. And i create stopwatch class like this. And when i call onPause in another Activity its freeze application.
public class StopWatch implements Runnable {
private Object ...
0
votes
0answers
27 views
pause the process when the thread is ended in java
I am writing a utility in java which needs to run multiple processes. I have created a LIST of threads so, everytime a process is started by the user start a new thread and add that thread in the ...
0
votes
3answers
185 views
Android: how to resume main thread after download is finished
What can I do, if I'm in any Activity and I want download a file (using thread) and at same time I want the main thread waits until download is finished?
0
votes
3answers
182 views
Pausing/resuming multiple threads in java
Trying to write a program that will run, suspend, and resume 3 threads.
here's the coding:
class Connectthread implements Runnable
{
public void run()
{
for(int j=0;j<90;j+=10)
...
3
votes
1answer
163 views
How to get a string value from a thread at fixed intervals while able to pause/resume?
I have made a small swing application for my personal use. This app connects to internet, retrieves a text file, displays its contents in a jTextArea and saves the text file locally (in my hardisk). ...
0
votes
1answer
341 views
android thread pause /resume not responding after home button pressed
I am making my first android game and I have a problem with my game thread. The thing is that when I pause it and press back or home button, I get an error. "the activity (in my app game) is not ...
2
votes
1answer
154 views
onRetainNonConfigurationInstance with Multiple Threads?
I have about resuming multiple threads within the same Activity: I've three different threads in my app, that I call AThread, BThread and CThread.
If my app is closed and reopened, I need to reopen ...
1
vote
1answer
382 views
How to pause/resume threads in OmniThreadLibrary 3?
I want the main application thread to be able to pause / resume the other working threads, assuming this is possible, what's the best way to do this?
Any suggestion that would work on Windows XP (and ...
0
votes
1answer
178 views
paused/stopped activity resume by thread
Imagine the follow situation:
MainActivity starts a thread to receive bluetooth data.
If the user press back button the follow sequence happens: onPause() -> onStop() -> onDestroy(). The ...
1
vote
4answers
3k views
how to pause/resume a thread
How can I pause/resume a thread? Once I Join() a thread, I can't restart it.
So how can I start a thread and make it pause whenever the button 'pause' is pressed, and resume it when resume button is ...
5
votes
1answer
1k views
How to Suspend and Resume Threads in android?
I just noticed that suspend and resume in android thraeding has been deprecated. what is the work around for this or how can I suspend and resume a thread in android?
any help would be much ...
1
vote
3answers
137 views
How to immediately pause another Thread
I've looked at a number of threads but I haven't found what I wanted so here goes:
I'm writing a game in which a thread - GameThread - loops continuously, updating all my sprites, rendering them, and ...
0
votes
1answer
1k views
how to pause and resume a thread in my app?
i am developing a game.while playing the game if the user presses the device back button i have to pause the thread and display an alert box it confirms whether the user really wants to exit or not.if ...
3
votes
3answers
2k views
Self Suspending a thread in Delphi when it's not needed and safely resuming
This question involves Delphi and XE specifically deprecating Suspend and Resume. I have read other posts and I have not found a similar usage so far, so I’m going to go ahead and ask for a ...
4
votes
3answers
266 views
Java threading problem
I'm using multiple threads in my application. Basically I have a combo box and upon selecting Inbox, p1 resumes and p2 is suspended and upon selecting Send, p2 starts and p1 stops. Below is the code ...
7
votes
4answers
5k views
Delphi thread that waits for data, processes it, then resumes waiting
I need to create a thread in Delphi with the following characteristics:
Waits until the main thread adds data to a shared queue.
Processes all the data in the queue, returning the results to main ...
2
votes
4answers
952 views
Resuming C# threads
Possible duplicate question: http://stackoverflow.com/questions/142826/is-there-a-way-to-indefinitely-pause-a-thread
In my code i do the below
Thread mainThread
//...
mainThread.Resume();
void ...
0
votes
1answer
2k views
CreateProcess suspended cant resume
the code:
bool success=CreateProcess(m_Process,
NULL,
NULL,
NULL,
FALSE,
NORMAL_PRIORITY_CLASS||CREATE_SUSPENDED,
NULL,
...
