Last active
August 16, 2018 11:38
-
-
Save qrpike/371a67ffaee4a1f55ff3225fd86cba6b 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 ( | |
"fmt" | |
nats "github.com/nats-io/nats" | |
) | |
func main(){ | |
servers := "nats://nats1.polygon.io:30401, nats://nats2.polygon.io:30402, nats://nats3.polygon.io:30403" | |
nc, _ := nats.Connect(servers, nats.Token("YourAPIKeyHere")) | |
messages := make(chan *nats.Msg, 1000000) // Plenty of buffer room | |
go printMessages( messages ) | |
// Subscribe to Quotes | |
nc.Subscribe("Q.*", func(m *nats.Msg){ | |
messages <- m | |
}) | |
// Subscribe to Trades: | |
nc.Subscribe("T.*", func(m *nats.Msg){ | |
// Do not print to console here because it will block | |
messages <- m | |
}) | |
var input string | |
fmt.Scanln( &input ) | |
} | |
func printMessages( messages chan *nats.Msg ){ | |
for { | |
m := <- messages | |
fmt.Printf("[MSG] Received: %s\n", string(m.Data)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment