ing
This commit is contained in:
parent
70558ac43e
commit
be462344c1
@ -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)
|
||||
}
|
||||
|
@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user