Add configure script for concourse
A simple client for NATS written in Go.
Basic usage:
client := yagnats.NewClient() err := client.Connect(&yagnats.ConnectionInfo{ Addr: "127.0.0.1:4222", Username: "user", Password: "pass", }) if err != nil { panic("Wrong auth or something.") } client.Subscribe("some.subject", func(msg *Message) { fmt.Printf("Got message: %s\n", msg.Payload) }) client.Publish("some.subject", []byte("Sup son?"))
TLS: Add a cert pool to the ConnectionInfo to enable a TLS connection
roots := x509.NewCertPool() ok := roots.AppendCertsFromPEM([]byte("some-ca-cert-string")) err := client.Connect(&ConnectionInfo{ Addr: "127.0.0.1:4222", Username: "nats", Password: "nats", CertPool: roots, })
Note: The INFO message is NOT currently available for consumption from the client.
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
Yet Another Go NATS Client
A simple client for NATS written in Go.
Basic usage:
TLS: Add a cert pool to the ConnectionInfo to enable a TLS connection
Note: The INFO message is NOT currently available for consumption from the client.