This commit is contained in:
crusader 2017-09-27 17:42:16 +09:00
parent 70558ac43e
commit be462344c1
2 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ import (
func Subscribe(ctx context.Context, redisConn redis.Conn) {
s := ofs_redis.New(ctx, redisConn)
webS := newWebSubscriberHandler(ctx, "web")
webS := newWebSubscriberHandler(ctx, "/web")
s.Subscribe(webS)
}

View File

@ -21,10 +21,10 @@ type webSubscriberHandlers struct {
ctx context.Context
}
func (h *webSubscriberHandlers) OnSubscribe(payload string) {
uid := "kdkdkd"
channel := "web"
soc := server.GetSocket(channel, uid)
soc.Write([]byte(payload))
func (h *webSubscriberHandlers) OnSubscribe(channel string, message ofs.SubscribeMessage) {
for _, uid := range message.Targets {
if soc := server.GetSocket(channel, uid); nil != soc {
soc.Write(message.Message)
}
}
}