Timertask is a Java API class. Logically it represents a task that can be scheduled for one-time or repeated execution by a Timer
-1
votes
0answers
27 views
Pacman with Timers
I'm developing a pacman program in Java.
So i'm using multiple timers according to my needs. I have a timer for pacman movement, one for the ghosts, and another to pacman "opening and closing his ...
0
votes
2answers
23 views
TimerTask causing “Access closed cursor” force close
I have a TimerTask that is causing my app to crash when I go to a different Intent. Here is the error:
06-06 02:45:54.884: E/AndroidRuntime(602): FATAL EXCEPTION: main
06-06 02:45:54.884: ...
0
votes
0answers
36 views
Android Timer is called twice
Hey guys
I'm trying to develop a little slide show in android. I've implemented the timer with a timertask and as expected the "run"-method is called everytime after the delay. But, however, when the ...
1
vote
3answers
47 views
My java class Updater don't update
I would like to know where is the problem in this class, I'm making a class that every n seconds make something, but it appear to do it only 1 time.
this is the class
import java.util.Timer;
import ...
0
votes
0answers
34 views
java - TimerTask - why my code behaves like that?
I wrote the following code:
private void Button_StartMouseClicked(java.awt.event.MouseEvent evt) {
java.util.Timer().schedule(
...
0
votes
1answer
75 views
Process running in background with timer Task killed by android
I have app with timer task,my app is save the current cell ref and neighbor cell into csv at interval time. My problem is,when i start the app and press 'HOME' screen at device and then i running ...
0
votes
1answer
45 views
Send notification every x seconds
I'm doing an app that checks the live scores. I don't know if it's the best way, but I created a Timertask, a Service and and Activity to notify.
The Timertask checks every x seconds if the score ...
0
votes
1answer
33 views
Java TimerTask <identifier> expected
Why does java keep giving me this error?
I have read multiple ways to use timer and all have given me expected error
I have been trying to get this for a while now.
private class ...
0
votes
1answer
40 views
Android TimerTask big imprecision
i have a problem using TimerTask in android. The situation is this one:
I have a class extending AsyncTask, cal it MyAsyncTask, and i have a static method in another class, call it SchedulerClass.
...
1
vote
0answers
18 views
Best approach to implement an accurate recorded stream execution
I have a stream of events recorded (for example an ArrayList<InputEvent> sorted by InputEvent.getWhen()). Differences in time between consecutive events can be of the order of tens of ...
0
votes
1answer
72 views
TimerTask is already scheduled
I have a MediaPlayer object which plays a local audio file. I am using a TimerTask to update the position of a SeekBar and text on a TextView while the audio plays.
There is one button. When the ...
1
vote
1answer
138 views
android app running in background with timer task,suddenly stop the task
I make app in android with scheduled task and running in background, but when i open other app and do it something with my device,then i back to my app to check the task,the task is stopped. i have ...
0
votes
1answer
56 views
Using a counter inside a java.util.Timer in Android Activity causes app to crash
I'd like to accomplish something which I would think to be simple, but is turning out to be a hassle.
I have a loading screen with a picture, and I'd like for it to fade in and out as the application ...
0
votes
5answers
111 views
Making a program run for 5 minutes
So I wanted to try out something for a bit with the Timer and TimerTask classes.
I was able to get a line of code to execute after 30 seconds elapsed.
What I've been trying to do now is to get this ...
1
vote
2answers
63 views
Stopping a Timer Task from within a Runnable thread when shutdown
I have a TimerTask that gets started as the first thing in my run() method of my Runnable class. I want to make sure that it gets stopped when the runnable is shutdown.
The runnable is started via ...
0
votes
1answer
33 views
Timer util wont add a new line for JLabel
Why is that When I user the Timer.util the JLabel wont allign with my String that I inserted in my JTextPane? But when I use the Timer it Allign. I need the Timer.util for my database so it wont lag.
...
-2
votes
3answers
115 views
Access to the database every 1 hour C# [closed]
I have a problem, I'm trying to create a service to connect to an API that I have created.
This service has to connect to a database in Mysql every hour, and see if there is a certain value.
For ...
0
votes
1answer
133 views
android popup window of image when screen interaction idle for a 10 seconds
I have a problem trying to implement a popup image when screen of android phone is left idle or unused for 10 seconds. Currently I am using a timer but need to implement an on-idle listener instead ...
0
votes
2answers
183 views
Android Java Timer()
I'm using Timer() due to its accuracy but works in the same was as PostDelayed Handler. It's called only once. Here is the Timer code:
public void setWFT() {
WFT = new Timer();
...
0
votes
1answer
69 views
android , can't alter text views and set button visible in Timer Task
I'm having a problem and i Can't solve it. In my activity, I got a function that returns if the phone is connected to Wifi or 3g . When I open onCreate() I make the initialization of variables and I ...
1
vote
1answer
49 views
Start/Cancel Timer when battery level 10
I am working on a BlackBerry App that sends a message to the server when the battery level reaches 10%. This is implemented by calling getBatteryStatus() method in the constructor where ...
1
vote
1answer
89 views
Android: Timer Task query
I have an app in which based on some click I start the timer using the TimerTask().
But I would also like to have support for multiple timers for multiple clicks.
So if one timer is already working ...
-1
votes
1answer
21 views
intentService thread not getting stopped permanently
Even after googling for long, I couldn't find the solution to my problem.
Problem is:
In my application, I launch an intent which call the file implementing intentService on click of toggle button ...
0
votes
0answers
104 views
Quartz Scheduler vs TimerTask in JSF
There are two type of task in my JSF2.0 web.
Invoke a third party java application only once at defined time
Invoke and get the data from some third party application repeatedly in some specified ...
1
vote
1answer
59 views
Unusual delay in scheduling with TimerTask in java
I am scheduling a thread for daily run using TimerTask. Here is the code.
private void scheduleDailyProcess() {
Calendar c = Calendar.getInstance();
c.add(Calendar.DATE, 1);
...
1
vote
1answer
88 views
Java - Combine Observer pattern with timer task?
In a previous post, I used the observer pattern. Description -
class Flight has a status (ie int) - before time, on time, late. This is my Observable
class FlightStatusMonitor has an ArrayList of ...
0
votes
1answer
19 views
Singlethreaded ScheduledThreadPoolExecutor with calls limit
I would like to utilize the java.util.concurrent.Executors to fire some runner.
The problem is that i wanted to fire it fixed amount of times. It is important to call those runners a fixed rate.
For ...
0
votes
2answers
83 views
TimerTask and AsyncTask implementation across APIs
I found that AsyncTask and TimerTask do not behave the same across different API versions.
Here's my setup:
A TimerTask is set to fire every once a while. There is a service whose method is called ...
0
votes
2answers
112 views
check if the timer has any pending tasks?
I use the Java's Timer to schedule a task to run after some interval of time.
myTimer.schedule(myTask, delayTime);
At any point in time, is it possible to check if there is any task scheduled to be ...
0
votes
2answers
128 views
Postponing timer schedule java
At TIME = 0, a user calls a method that sets a flag after 10 seconds. (at TIME = 10)
If the user calls the method again at TIME = 2 the flag should NOT be set at TIME = 10, but instead at TIME = 12:
...
0
votes
0answers
126 views
Setting a timeout in java
I'm having a class that tracks the values of a sensor on a device, which is very resource-expensive.
The class has a getSensorValues() method, from which I can get the last tracked values.
I want to ...
0
votes
3answers
57 views
how set TimerTask for PrintWriter?
I am using TimerTask to send messages every 3 seconds, but its sending only one time.
public static void main(String[] args) throws IOException {
soc = new Socket("localhost", 12345);
...
0
votes
2answers
82 views
Checking Whether a Task Has Succeeded Before Timer Expires C# (Multi-thread)
I have a scenario in which a parent thread spawns multiple task/job threads (done by someone else). At the end, I need to perform one additional task which is unrelated to the job threads.
What I ...
-1
votes
1answer
94 views
Thread and mediaplayer problems, Timer with sound
I'm developing an Android application that is based on a timer that every second must play a sound that you selected before.
Here is the problem:
No objects can run Media Player in a Thread or a ...
2
votes
1answer
71 views
How to completely remove a runnable timer?
I have a timer which works great, it will output my Toast every 10 seconds. I thought I understood the following code quite well, but apparantly I do not as I cannot remove the timer, here is my code:
...
1
vote
1answer
51 views
Registering listener issue
I've been working on a location service for a demo application. I'm setting up a listener for network and GPS (I know this can be done with one but Ive very basic java and find this easier to work ...
1
vote
1answer
564 views
How to pause, and resume a TimerTask/ Timer
I have an animation in my Android app that flashes a TextView different colors. I've used a TimerTask, Timer, and Runnable method to implement this. What I need to do is stop the thread when a user ...
-3
votes
1answer
192 views
Java Service (background process) running on the background [closed]
In my application, I have a method, that is sorting data in one of my database tables (jdbc). It also finds similar rows and writes them into another database table.
What I want to do, is to run ...
4
votes
4answers
218 views
Need to fix my Java Timer code
Task - Turn a bulb on and off at a specified time during a day. I need to know how to fix my code as per the information given below. I also need to know if I am using the timer class correctly, that ...
0
votes
1answer
38 views
Android: how to switch with timer?
I am trying to activate a sound with an switch widget, so I can turn it off as well. Though I also want it to shut down automatically of after a few seconds. everything works though the app crashes on ...
0
votes
4answers
249 views
Updating UI on button click after a certain time
I have a TextView. I want to update its text (append a "1") after 1 second of a button click.
public class HaikuDisplay extends Activity {
Method m;
Timer t;
/** Called when the activity ...
-1
votes
1answer
289 views
TimerTask Crash in previewCallback
I am using a TimerTask() in previewCallback for an app. However, it stops to work.
I am newbie for Android development and I have no idea what or where is the problem.
I am trying to reactive the ...
-1
votes
1answer
374 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.
0
votes
2answers
119 views
TImerTask on paintComponent
I have used a TimerTask to add a timer on a loop on one of my classes which is called by the paint component class. Basically there are white circles on the page already painted, there is then a for ...
0
votes
0answers
115 views
Android - How do I make an animationdrawable restart from onRestart()?
I have an activity that displays a countdown timer made from a series of images. When the countdown is finished an intent gets called that launches a new activity. It all works well enough, the ...
0
votes
0answers
167 views
TextView widget error loading widget
My widget gives me "Problem loading widget" when trying to use it and I don't know why.
Here's my code:
Class
public class DigitalClock extends AppWidgetProvider {
public void ...
0
votes
1answer
95 views
Service of an app stops when phone is not being charged
My Activity starts a service by calling startservice(). To simplify my problem lets say the service will be a counter, and the counter will be increased in every 10 sec.
Timer t_counter;
int counter ...
2
votes
0answers
251 views
Spring - TimerTask implementation running twice
I have a simple TimerTask implementation that just prints to the System.out
public class RefreshUserAndOLStatsJob extends TimerTask {
public void run() {
...
0
votes
0answers
186 views
android Timer shedule(timertask,date) start running when application start
I want to use the timer.schedule(timertask,date) to do something , but it's not on time.
It worked immediately when application start.How can I use multiple timers at the different specific time to do ...
0
votes
2answers
310 views
How can i stop a TimerTask Handler?
I am trying to stop a Timer or TimerTask, but the method doesn't destroy the task...
First the code how i set up the timertask:
scanTask = new TimerTask() {
public void run() {
...




