Timertask is a Java API class. Logically it represents a task that can be scheduled for one-time or repeated execution by a Timer

learn more… | top users | synonyms

0
votes
1answer
40 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
23 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 ...
-1
votes
0answers
15 views

Set timeout for TimerTask

I am accessing one webservice in regular time interval by using TimerTask. Here is the saple code package integration; import java.util.Timer; public class OperationScheduler { public Timer ...
0
votes
1answer
35 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
16 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
37 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
63 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
34 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
91 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
51 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
29 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
96 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
84 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 ...
-1
votes
0answers
32 views

Android don't work on android 4.0.3 but and android 4.1 work fine

i have problem with android app. app in android 4.1 works fine but on android 4.0.3 crash my code: public void onStart(Intent intent, int startId) { Log.d(Background_work.TAG, "Service ...
0
votes
2answers
115 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
45 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
46 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
76 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
16 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
72 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
51 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
67 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
74 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
83 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
83 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
92 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
49 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
75 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
86 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
55 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
49 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
312 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
179 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
198 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
37 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
188 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
272 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
285 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
114 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
104 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
132 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
86 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
213 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
164 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
197 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() { ...
0
votes
0answers
46 views

Best solution to update last modified date -

I have a Spring controller for adding different kind of elements to the parent items, when I update or add a new item I need to update the last modified date of his parent. My problem is that we call ...
0
votes
1answer
93 views

How to play gif image for long time or continuosly

How to play gif image continuously on canvas. I am using surface view. When app getting loaded that gif image is running only once and then stops automatically. Any ideas to run gif continuously.
-1
votes
3answers
94 views

Delete timer from another activity

i have got a login form, and i use sheredpreferences to store the login, if the user doesnt press the remember me button, i save the username during 5 minutes, after that time the username is deleted. ...
0
votes
0answers
46 views

GWT timer throwing exception while in a standalone class

I am using GWTQuery to detect paste event on a textbox, then setting a small timer after which it is supposed to get the value pasted in it. Something like this: $("#paste").live("paste",new ...

1 2 3 4 5