(Id uint64)
| 57 | } |
| 58 | |
| 59 | func (n *notify) DelNotifyByID(Id uint64) { |
| 60 | strId := n.genConnStrId(Id) |
| 61 | n.connIdMap.Remove(strId) |
| 62 | } |
| 63 | |
| 64 | func (n *notify) NotifyToConnByID(Id uint64, MsgId uint32, data []byte) error { |
| 65 | Conn, err := n.GetNotifyByID(Id) |
nothing calls this directly
no test coverage detected