Created
September 20, 2020 05:06
-
-
Save csthompson/d45cbd973e67efe8ffef5ed2e4c03349 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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