go-common/app/job/main/usersuit/service/notify.go
2019-04-22 18:49:16 +08:00

19 lines
544 B
Go

package service
import (
"context"
"strconv"
"go-common/app/job/main/usersuit/model"
"go-common/library/log"
)
func (s *Service) accNotify(c context.Context, uid int64, Action string) (err error) {
msg := &model.AccountNotify{UID: uid, Type: "update", Action: Action}
if err = s.accountNotifyPub.Send(c, strconv.FormatInt(msg.UID, 10), msg); err != nil {
log.Error("mid(%d) s.accountNotifyPub.Send(%+v,%s) error(%v)", msg.UID, msg, Action, err)
}
log.Info("mid(%d) s.accountNotifyPub.Send(%+v,%s)", msg.UID, msg, Action)
return
}