1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00
denoland-deno/timers.go

40 lines
788 B
Go
Raw Normal View History

2018-05-21 23:00:36 -04:00
package main
import (
"github.com/golang/protobuf/proto"
"time"
)
func InitTimers() {
Sub("timers", func(buf []byte) []byte {
msg := &Msg{}
check(proto.Unmarshal(buf, msg))
switch msg.Payload.(type) {
case *Msg_TimerStart:
payload := msg.GetTimerStart()
return HandleTimerStart(*payload.Id, *payload.Interval,
*payload.Duration)
2018-05-21 23:00:36 -04:00
default:
panic("[timers] Unexpected message " + string(buf))
}
})
}
func HandleTimerStart(id int32, interval bool, duration int32) []byte {
wg.Add(1)
go func() {
defer wg.Done()
time.Sleep(time.Duration(duration) * time.Millisecond)
payload, err := proto.Marshal(&Msg{
Payload: &Msg_TimerReady{
TimerReady: &TimerReadyMsg{
Id: &id,
2018-05-21 23:00:36 -04:00
},
},
})
check(err)
Pub("timers", payload)
}()
return nil
}