You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/example/etcd/sub/sub.go

22 lines
325 B
Go

4 years ago
package main
import (
"fmt"
"time"
"zero/core/discov"
)
func main() {
sub := discov.NewSubscriber([]string{"etcd.discovery:2379"}, "028F2C35852D", discov.Exclusive())
ticker := time.NewTicker(time.Second * 3)
defer ticker.Stop()
for {
select {
case <-ticker.C:
fmt.Println("values:", sub.Values())
}
}
}