A schedule is the arrangement of events in time.
Questions tagged [schedule]
1847 questions
5
votes
2 answers
How to stop immediately the task scheduled in Java.util.Timer class
I tried everything. This one too How to stop the task scheduled in Java.util.Timer class
I have one task that implements java.util.TimerTask
I call that task in 2 ways:
I schedule Timer like this:
timer.schedule(timerTask, 60 * 1000);
sometimes…

vale4674
- 4,161
- 13
- 47
- 72
5
votes
1 answer
How to schedule a Jenkins job each 15 minutes
I need to schedule a jenkins job each 15 minutes.
Currently i'm using the Build periodically feature but that enables me to schedule the job once in 1 hour maximum.
What i got now is:
15 * * * * is running the job HOURLY (each XX:15)
15 0 * * * is…

shayms8
- 671
- 6
- 13
- 28
5
votes
3 answers
TimerTask keeps running
I have a question about the behaviour of Timer class in Java.
This is the code: http://pastebin.com/mqcL9b1n
public class Main {
public static void main(String[] args) {
Main m = new Main();
m.foo();
m = null;
}
…

makakko
- 357
- 5
- 11
5
votes
1 answer
How to stop a repeating task schedule in Bukkit
I am writing a minigame for Minecraft and have a problem with the schedule. I don't know how to stop the schedule. Please tell me how I can stop running this loop / Timer / Schedule:
public void WarteTimer() {
count =…

STobiasS
- 75
- 2
- 6
5
votes
1 answer
Timer Service in ejb 3.1 - schedule calling timeout issue
I have created simple example with @Singleton, @Schedule and @Timeout annotations to try if they would solve my problem.
The scenario is this: EJB calls 'check' function every 5 secconds, and if certain conditions are met it will create single…

Greg
- 2,413
- 5
- 22
- 23
5
votes
2 answers
Java EE 7: Get @Schedule date when is set to persistent = true
In my Java EE 7 application I have created a persistent Schedule task that runs every hour. I have used @Schedule annotation.
When this job is called I want to perform some actions on events that have happened from the last hour until NOW. To…

marcoslop
- 106
- 7
5
votes
1 answer
What is a good program in C that can demonstrate strengths/weaknesses of different linux schedulers (noop, CFS, deadline)?
I'm trying to find a way to demonstrate how different schedulers may affect the runtime of a program. So far, I'm only using the time function on linux to try and see measurable differences using noop, CFS, and deadline schedulers but I'm not having…

Leggy
- 147
- 7
5
votes
0 answers
EJB3.1 @Schedule in clustered environment
This is a follow up question to EJB3.1 Timer cancel issue
I used Spring's @Scheduled earlier in my projects. Is EJB3.1 @Schedule similar to that? How does EJB3.1 @Schedule fare in Clustered environment? In a Clustered environment where there are…

IndoKnight
- 1,846
- 1
- 21
- 29
5
votes
1 answer
node js + mongodb + schedule notifications
I´m new in nodejs, I´m trying to develope a calendar application with nodejs and mondodb, where users can schedule events (appointments, alerts, etc). Events could repeat in time(every 8 hours, evety 3 months, ...) and I want to notify users before…

rnogal
- 51
- 2
5
votes
1 answer
JQuery Multiple Month Calendar View
I'm looking for suggestions/recommendations for a JQuery/Javascript calendar that can display multiple months at once (ie. previous month, current month, next month) like so:
(The attached mockup shows a 4-month view, but I think we'll actually be…

shimmoril
- 682
- 1
- 11
- 22
5
votes
3 answers
How to get data from url link to our website
I have a problem with my website. I want to get all the schedule flight data from another website. I see its source code and get the url link for processing data. Can somebody tell me how to get the data from the current url link, then display it to…

Agoeng Liu
- 674
- 3
- 10
- 30
5
votes
3 answers
Java EE-Timer / @Schedule in Websphere Liberty Profile
I want to use the timer-Service (especially @Schedule Annotation) in WebSphere Liberty Profile. Is that possible?
Is there a feature for? https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/8.5.5.0/ is nothing ;–(

Robert
- 126
- 11
5
votes
1 answer
Reliable Task Schedule
Well... Please excuse me for positing such vague question but i am crashing my head because of it and i can't find a good logic to implement it or at least a good library that do such thing for me.
Situation
My application should be executing a lot…

Erric J Manderin
- 1,096
- 3
- 10
- 23
5
votes
1 answer
Error 100 schedule a post on Facebook Page
I've used the following code. It works fine without 'scheduled_publish_time', otherwise I get this error "(#100) You cannot specify a scheduled publish time on a published post".
I've previously registered my app with another piece of code. It's so…

knip
- 71
- 5
5
votes
1 answer
How to return only work time from reservations in PostgreSql?
Select from great answer in How to find first free time in reservations table in PostgreSql
create table reservation (during tsrange,
EXCLUDE USING gist (during WITH &&)
);
is used to find gaps in schedule starting at given date and hour…

Andrus
- 26,339
- 60
- 204
- 378