<div id="clock"></div>
window.ActorSystem = tarant.ActorSystem
window.Actor = tarant.Actor
class Clock extends Actor {
constructor(times) {
super()
this.times = times
this.timer = this.schedule(1000, this.tick, [times])
}
tick(maxTimes) {
document.getElementById('clock').innerText = `Doing cool things: ${this.times}/${maxTimes}`
this.times--
if (this.times <= 0) {
this.cancel(this.timer)
document.getElementById('clock').innerText = 'Done!'
}
}
}
let system = ActorSystem.default()
window.onload = () => system.actorOf(Clock, [10])
This Pen doesn't use any external CSS resources.