timetable-mgr/vstp/handler.go

17 lines
331 B
Go
Raw Normal View History

2023-07-19 21:31:00 +01:00
package vstp
import (
"git.fjla.uk/owlboard/timetable-mgr/log"
2023-07-19 21:31:00 +01:00
"github.com/go-stomp/stomp/v3"
2024-04-14 19:03:13 +01:00
"go.uber.org/zap"
2023-07-19 21:31:00 +01:00
)
var count uint64 = 0
func handle(msg *stomp.Message) {
count++
2024-04-14 19:03:13 +01:00
log.Info("Message received", zap.Uint64("total since startup", count))
schedule := unmarshalData(string(msg.Body))
processEntryType(schedule)
2023-07-19 21:31:00 +01:00
}