A schedule is the arrangement of events in time.
Questions tagged [schedule]
1847 questions
0
votes
1 answer
Android : Schedule notification message at specific date
I'm looking to create a function for an Android app in which I get a notification every 25th day of the month indicating I have to do a certain task.
I've been able to display the notification using the following code :
public class…

Gerton
- 676
- 3
- 14
0
votes
1 answer
java Timer.schedule work incorrectly on Windows system
I create a project in java which is a typing game. I use java.util.Timer.schedule to set a Timer to repaint my window. Code here:
timer.schedule(new TimerTask() {
@Override
public void run() {
// Some other codes ...
…

lllwwwbbb
- 63
- 1
- 4
0
votes
1 answer
How to change icon of prev/next button of p:schedule to text
I'm creating a website that using primefaces and jsf for my customer. I used schedule component in my project. Everything look good until my customer tell me that they want to change icon of prev/next button into text such as "Previous"/"Next".…

Xiao King
- 369
- 1
- 13
0
votes
1 answer
Making a dynamic schedule view that brings data from remote webpage
I'm trying to make a view with Swift on Xcode that shows the schedule of an event day.
The problem is that, while I'm trying to make the schedule dynamic, so that it changes depending on the data from a website, the way to do so is elusive.
For…

Daniel
- 55
- 8
0
votes
1 answer
trying use excel to count how many times a doctor is on a rotation in a month
I'm currently trying to come up with a way to have excel look at a monthly schedule for my doctor's service rotations and to provide a summary of the services they're scheduled for and how many of each.
below is an example of how the schedule is…

Joshua Lester
- 3
- 2
0
votes
1 answer
primefaces schedule repeat day with different values
I want to know if there is anything I can use with primefaces schedule or anything similiar preferably from primefaces, to be able to set diferent events for the same day, I explain my situation a little better:
I have multiple boardrooms and I have…

Ivan Chavarria
- 41
- 1
- 9
0
votes
2 answers
Table update and Primefaces ScheduleEvent
Hello i would like to ask your help to solve a difficult i meet in my project.
I am using primefaces Schedule to do a task and for that i store all events in a MySQL table named agenda.
My difficult concerns the table update. When i update for the…

SANDWIDI
- 27
- 11
0
votes
0 answers
How to generate a schedule booking table
I am currently working on a project that requires me to create a schedule from which users can book different periods.
In practical terms, users need to have the possibility to subscribe to our services for the length of their choice (eg. from 4 to…

Pierre Collinet
- 21
- 2
0
votes
1 answer
Jenkins schedule a job every 105 minutes
I need to schedule a jenkins job to run every 90 minutes
I tried the following but it did not work
*/45 */1 * * *
But the job ran ever hour and then at every 45 minutes like
Sep 15, 2016 1:46:09 AM
Sep 15, 2016 1:01:09 AM
Sep 15, 2016 12:46:09…

nirav
- 77
- 1
- 10
0
votes
2 answers
How to schedule random messages in Akka? (Message reference is always the same)
I'm trying to schedule random messages with Akka scheduler.schedule, something like:
system.scheduler.schedule(1 second, 5 seconds, actorRef,
scala.util.Random.nextInt(50))
The problem is that the "Int" reference gets caught and the message…

vicaba
- 2,836
- 1
- 27
- 45
0
votes
0 answers
c# quartz.net schedule jobs to run in a queue
I have a small background process that serves message sending service built upon Quartz.net lib.
The basic problem is that job trigger instruction .StartNow() starts concurently with the same instances of the current MessageJob.
And I've got no idea…

Ruberoid
- 1,585
- 1
- 9
- 12
0
votes
0 answers
Should I clear PersistenceContext with Singleton/Schedule?
Let's say I have an EJB for scheduled job.
@Singleton
@Startup
public class MySchedule {
@Schedule
public void doSomething() {
// select oldest 8192 entities (MyEntity.class)
// and process them
…

Jin Kwon
- 20,295
- 14
- 115
- 184
0
votes
1 answer
Titanium: how to schedule events at specific date time
I need to schedule events at specific date time (for example an alert at birtdate) just like a calendar, eventually also with recurrence. I need to do this in Appcelerator Titanium. I've tried this module but no notifications are displayed at…

revy
- 3,945
- 7
- 40
- 85
0
votes
1 answer
Start Schedule again: javax.ejb.Timer
I would like to start the schedule again with the same settings (every 10 seconds) (javax.ejb.Timer) after I have stopped the schedule:
// call this remote method with the Timer info that has to be canceled
@AccessTimeout(value = 20, unit =…

internet
- 385
- 1
- 8
- 27
0
votes
1 answer
How to start and end a timer or schedule job in tomcat servlet request dynamicly?
Many posts said we can use ScheduledExecutorServicein a ServletContextListener. But I want to start a timer at some kind of circumstance, and then stop it at another circumstance. For example, start a timer in request A from client A, stop it in…

Leo Lee
- 468
- 5
- 16