5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 20:42:31 +00:00
matterbridge/vendor/github.com/mrexodia/wray/examples/client.go
2016-09-04 20:04:43 +02:00

18 lines
412 B
Go

package main
import "github.com/pythonandchips/wray"
import "fmt"
func main() {
wray.RegisterTransports([]wray.Transport{&wray.HttpTransport{}})
client := wray.NewFayeClient("http://localhost:5000/faye")
fmt.Println("subscribing")
client.Subscribe("/foo", false, func(message wray.Message) {
fmt.Println("-------------------------------------------")
fmt.Println(message.Data)
})
client.Listen()
}