0
votes
1answer
16 views

Run thread after app closes with Timer

I am making a test app which starts a Thread on a button click. I am finding location through GPS within the thread. But when I close the app, the thread gets destroyed. I want to start a thread that ...
0
votes
0answers
36 views

Python: [Help] Best use of asynchronous timer (Non Blocking Timer)

My question is if I have a thread program that runs in an infinite loop and each loop does a simulation step, at every loop there might be a request for timer to do something. This sounds easy but the ...
1
vote
2answers
23 views

Using less Timers

It doesn't really lag that much in my game but I know that I could reduce a lot of lag in my game by having less Timer's running. The game have multiple Timer's because it have one Timer that updates ...
0
votes
1answer
21 views

how to stop a process when another is running java android

i am doing an app in android that connecting with servers and downloading some chunks. now i want to have another one process doing other job. here is my code class RemindTask extends TimerTask { ...
0
votes
2answers
25 views

timeout event design with a detached thread

I have a linked list, and I insert nodes into it frequently. for each node, after it is inserted, an element inside the node needs to be updated in 5 seconds, if no updating happends inside the 5 ...
1
vote
2answers
82 views

Hold timer type thread

im having difficulties figuring this out for myself hence asking here. i have an application which installs a client on a remote machine and the client reports back through a socket. im trying to ...
0
votes
1answer
36 views

Count the threads ended per second

I have some code that spawns a few threads and invokes a Run() method on them. What I want to do is to embed a timer into that loop which starts the threads and count how many threads have been ...
-1
votes
2answers
52 views

VB.NET - Timer not working properly with thread

I'm developing a small app that sends data to a microcontroller. Anyway, a part of it contains downloading data from a web server once in a second and forward that data to the microcontroller if the ...
0
votes
2answers
25 views

Creating the Timer which will invoke a method every XXXXms

I would like to create an object which will invoke method called loadNextImage every let's say 1000ms. I can do it by creating a new Thread which will sleep for 1000 then call this method but I do not ...
2
votes
1answer
75 views

Why System.Timers.Timer elapsed is firing multiple times after closing and reopening of the form

My first question here. I hope that I won't make any blunders... I'm a beginner self-taught hobbyist C# programmer (books, googling, msdn, and writing apps for myself). It might be something stupid ...
0
votes
0answers
29 views

Ruby Sleep Inside of Thread Waits for Mouse Movement Before Continuing

I have a program in which I want to periodically check the contents of a folder while still allowing the user to interact with the program itself. I was planning on splitting the periodic checking ...
1
vote
3answers
44 views

Pass by reference vs. Pass by pointer: Boost threads and deadline timer

I have this simple program that outputs increasing integers in the span of 1 second using boost libraries: #include <iostream> #include <boost/thread/thread.hpp> #include ...
0
votes
1answer
32 views

timer interrupt thread python

I've been trying to make a precise timer in python, or as precise a OS allows it to be. But It seams to be more complicated than I initially thought. This is how I would like it to work: from time ...
0
votes
3answers
86 views

Which is the best practice to call a method every x seconds?

I have a program that controls and communicate with a microprocessor. The program sends commands to the microprocessor and receives the feedback at the same time the command is sent showing the same ...
0
votes
1answer
35 views

How to execute a block of code with 1 second intervals?

I need to execute a block every 1 second, but it needs to be in the same thread. This means, from what I understand, that I can't make the use of a timer class. Is there a way to do what I want?
0
votes
1answer
26 views

'self' is not defined - threading with Timer

My Code: class Ui_MainWindow(object): t = 59 def setupUi(self, MainWindow): #... self.changeTxt() def changeTxt(self): ...
1
vote
1answer
58 views

have method return false if a block of code is taking to long

Having trouble with threads and timers. I need this method to execute some code but if the code takes to long the method should return false. Here is what I am doing: public boolean ...
0
votes
1answer
24 views

Setting an method outside a Timer/Thread but still updating it constantly

In the game that I'm currently making I have to add the mousePressed method inside a Timer/Thread so that it always go updated. I need this because I have a power up in the game that change the way ...
2
votes
4answers
98 views

Do Legacy VB6 Timer Ticks stack or skip if previous tick is still running

We have a (very) Legacy application written in VB6 (15 years old?). The application contains a timer with 300ms interval. The Sub called when the timer ticks executes a batch of code that talks to ...
1
vote
1answer
59 views

I am creating a multi-threaded java application which simulates a persons spending pattern

/** * * * A small class to handle deposits and withdrawls from a bank account * */ package spendingsimulation; //import java.util.Random; public class BankAccount { public int ...
0
votes
2answers
52 views

Timeout for a method

My Program looks like below Main Program (Thread 1) Create multiple simple java threads (Thead 1.1, 1.2...) In each thread(1.1 or 1.2..) I'm doing some processing also calling one method which is ...
0
votes
3answers
63 views

Timer delegate call says “The memory could not be read”

So here's the thing i have a function and a timer that has an interval of 10ms. void process() { //some heavy processing logic here } Now what i'm doing is that i have added this function to ...
2
votes
1answer
138 views

Process.Start() hangs when running on a background thread

I've been troubleshooting all day. After doing some research and a lot of trial and error, it seems I've been able to narrow down the issue to the fact that my call to process.Start() doesn't work on ...
-1
votes
0answers
26 views

Threads in VB.Net excemption Errors [closed]

I am new in threads, want to implement them in my system, can someone help: Dim connStat As System.Threading.Thread = New System.Threading.Thread(AddressOf check_connection) Function ...
0
votes
1answer
68 views

TimerCallback not returning value C#

I am using System.Threading.Timer to create a timer that prints a string to a serial port and then reads from another serial port every second. I am trying to do this by sending arguments to my ...
1
vote
2answers
61 views

Windows Service: The calling thread cannot access this object because a different thread owns it

Trying to convert XML files using XSL and printing the output. However, receiving the following message: The calling thread cannot access this object because a different thread owns it. To set an ...
2
votes
2answers
92 views

how can you set a Timer for 1 minute in a java 2d shooting game?

I need the exact code for implementing this into my program. I just want to be able to play the game for one minute, then print to Game over after the minute. I would also appreciate if someone could ...
6
votes
2answers
108 views

Skip function if it takes too long

In Java I have a function that processes a text file in a certain way. However, if it takes too much time the process will most likely be useless (whatever the reason is) for that text file and I ...
1
vote
1answer
73 views

How do you check if DateTime is initialized?

I need help with making a code that checks every second if Datetime is started. If it is started it should close the already running function. I know dispatchertimer but I want it to run the thread in ...
0
votes
2answers
47 views

Schedule regular task without extending TimerTask?

How can I run instances of this class repeatedly in separate threads and given intervals? (As you have noticed I am using Java 2 EE). public class Gate extends AbsDBObject<Gate> implements ...
-2
votes
1answer
70 views

Java return value after timeout

I have a function that does a computation iteratively and updates a class global variable every time (the function runs the iterative deepening algorithm). I want to find a way to do the computation ...
1
vote
1answer
80 views

Is Linux timer a process

I'm trying to understand timers in linux to use it in my application, I've collected code from multiple sources and made the following program #include <stdlib.h> #include <unistd.h> ...
1
vote
0answers
31 views

how can I use muti boost thread in a dll in background

The after part is my program, but it not work as what I expect. I want the Main window program call function "MyDllIniSys" in the dll, let the dll render window per maybe 32 microseconds till the Main ...
0
votes
0answers
64 views

Is this the correct implementation of a timertask to destroy a process?

I was wondering if this is the correct implementation of a times task to destroy a thread after it overruns a predefined time period: it works by creating a getting the thread from ...
0
votes
1answer
34 views

using a timer to destroy/interupt a process in Java

Hi I am wondering how I could use a timer to destroy a process if it elapses a predefined time period in milisecs. Currently I have a method which gets the thread from runtime Runtime runtime = ...
0
votes
0answers
48 views

Windows Multi Timer: Why Timer callback function execute time-out can cause another timer became mess? (deep in Timer implementation mechanism )

Here is my source code: #include <windows.h> #include <iostream> using namespace std; #pragma comment(lib, "winmm.lib") UINT videoTimerID; UINT audioTimeID; static void ...
1
vote
1answer
35 views

How to update a view on a scheduled period

Can some one please tell me how to update a view on a scheduled period. for example every second. MyService.wm.updateViewLayout(mView, mLayoutParams); Problem that I'm having is when I used a ...
2
votes
2answers
49 views

How do I check how many events are happening within 2 seconds? (timer)

I need to check how many events are detected within 2 seconds. I have the timer working and I have everything else working...but I ran into a problem: the loop only checks one time, per second and I ...
-6
votes
1answer
232 views

C# Asp.net call a method every x minutes [closed]

What is the best way to call a function every x minutes in asp.net with c# ? The goal is: To make a small site that displays the content of a file (same file to all visitors). The content of the ...
-5
votes
2answers
105 views

C# asp.net threading timer file writer not working [closed]

I'm trying to have a function that runs every minute on the server and updates a txt file.. My code in Global.asax is something like this: Timer t = new Timer(UpdateFile); t.Change(0, 1000 * ...
0
votes
2answers
43 views

Thread Continues to Execute After Closing the Application

I have an android application that uses Threads. Application waits for some time, then executes a function. Things go pretty well if user waits for some time. After the predefined time t ends, the ...
-1
votes
1answer
53 views

C#: How can I have a method wait 2 seconds before it returns, without locking up the UI thread?

I need to wait 2 seconds for a serial port to respond, then return a value. What is the best way to accomplish that without locking the UI thread? I have a class called Test and I create an instance ...
0
votes
2answers
47 views

Calling inner class method from outer class while using same instance

Im trying to create a Timer class that changes a boolean when the time expires, however I am struggling finding a way to keep the same 'instance' of the Light class (since Im going to have more than ...
8
votes
1answer
160 views

Console.ReadKey vs Console.ReadLine with a Timer

The following code is a well known example to show the difference between a debug and release build: using System; using System.Threading; public static class Program { public static void Main() ...
0
votes
1answer
144 views

Java: Infinite loop in an application using a thread

I have a store which has a number of queues. Each queue has a number of max clients that can wait to be served and I can write the number of queues. My store would have to close after a certain amount ...
0
votes
2answers
64 views

Which thread do the methods run in?

I want a class which is able to perform a timed task in a thread separate from it's parent, but I am a little confused which thread the various pieces belong to, any information would be appreciated. ...
0
votes
2answers
63 views

.NET Thread.Sleep makes an offset to StopWatch counter?

I wrote this simple console code, but I cannot explain the result. public static void Execute2() { Stopwatch sw = new Stopwatch(); sw.Start(); while ...
3
votes
1answer
43 views

Python time.time() reliability in concurrent programs

I'm writing a simulation for a token ring LAN and trying to run a timer in a separate thread to my main program to check for a time out on receiving an "alive status" from the monitor. I'm starting ...
1
vote
2answers
69 views

Java Terminating Before Timer Runs

I have the following code new Timer(300, this).start(); and this public void actionPerformed(ActionEvent e) { //do something } in the same class which implements ActionListener. The problem ...
2
votes
2answers
203 views

Fast and Precise Python Repeating Timer

I need to send repeating messages from a list quickly and precisely. One list needs to send the messages every 100ms, with a +/- 10ms window. I tried using the code below, but the problem is that the ...

1 2 3 4 5 11