blob: 68a93267d9d7a80fa0b1543c7a27ea87f8c5e314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
package pl.edu.mimuw.cloudatlas.agent.modules;
import pl.edu.mimuw.cloudatlas.agent.messages.AgentMessage;
import pl.edu.mimuw.cloudatlas.agent.messages.TimerSchedulerMessage;
import pl.edu.mimuw.cloudatlas.agent.modules.ModuleType;
import java.util.Timer;
/**
* Initializes a timer within a constructor during its attachment to the executor
* Runs in a thread separate from executor - maybe refactor so that it's attached to executor's thread
*
* Handle used to attach tasks to schedule
* Tasks declared as inherited from TimerTask
*
* TODO: add request id and custom time
*/
public class TimerScheduler extends Module {
private Timer timer;
public TimerScheduler(ModuleType moduleType) {
super(moduleType);
assert moduleType == ModuleType.TIMER_SCHEDULER;
this.timer = new Timer();
System.out.println("TimerScheduler instance initialized");
}
@Override
public void handleTyped(TimerSchedulerMessage timerEvent) throws InterruptedException {
addTask(timerEvent);
}
public void addTask(TimerSchedulerMessage msg) {
TimerScheduledTask task = msg.getTask();
task.setScheduler(this);
this.timer.schedule(task, msg.getDelay());
System.out.println("Task with delay " + msg.getDelay() + " scheduled");
}
// TODO
public void removeTask(String requestId) {}
public void passMessageFromTask(AgentMessage msg) throws InterruptedException {
this.executor.passMessage(msg);
}
}
|