~stian-sandvold/dhis2/UserSettingFallback

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-reporting/src/main/java/org/hisp/dhis/scheduling/SchedulingManager.java

  • Committer: Stian Sandvold
  • Date: 2016-03-14 12:16:33 UTC
  • mfrom: (21871.1.422 dhis2)
  • Revision ID: stian.sandvold@gmail.com-20160314121633-ojggeaoszdunzltj
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    String TASK_ANALYTICS_LAST_3_YEARS = "analyticsLast3YearsTask";
46
46
    String TASK_MONITORING_LAST_DAY = "monitoringLastDayTask";
47
47
    String TASK_DATA_SYNCH = "dataSynchTask";
 
48
    String TASK_SMS_SCHEDULER = "smsSchedulerTask";
 
49
    String TASK_SEND_SCHEDULED_SMS = "sendScheduledMessageTask";
 
50
    String TASK_SEND_SCHEDULED_SMS_NOW = "sendScheduledMessageTaskNow";
48
51
    
49
52
    /**
50
53
     * Schedules all tasks.
52
55
    void scheduleTasks();
53
56
    
54
57
    /**
 
58
     * Execute the Task.
 
59
     */
 
60
    void executeTask(String taskKey);
 
61
    
 
62
    /**
55
63
     * Schedules the given tasks. The task map will replace the currently scheduled
56
64
     * tasks.
57
65
     *