Skip to content

Instantly share code, notes, and snippets.

@csthompson
Created September 20, 2020 05:06
Show Gist options
  • Save csthompson/d45cbd973e67efe8ffef5ed2e4c03349 to your computer and use it in GitHub Desktop.
Save csthompson/d45cbd973e67efe8ffef5ed2e4c03349 to your computer and use it in GitHub Desktop.
package main
import (
"log"
"time"
nats "github.com/nats-io/nats.go"
)
type Msg struct {
Subject string
Body []byte
}
func main() {
nc, _ := nats.Connect(nats.DefaultURL)
ec, _ := nats.NewEncodedConn(nc, nats.JSON_ENCODER)
msg := Msg{
Subject: "Hello World",
Body: []byte("Hello!"),
}
log.Println("Running publisher")
for {
//Description: The heartbeat topic will publish a message at regular
// intervals to signal system uptime
// Publishes: HeartBeatMsg
ec.Publish("heartbeat", msg)
time.Sleep(time.Second * 5)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment