(Id uint64)
| 37 | } |
| 38 | |
| 39 | func (n *notify) HasIdConn(Id uint64) bool { |
| 40 | strId := n.genConnStrId(Id) |
| 41 | return n.connIdMap.Has(strId) |
| 42 | } |
| 43 | |
| 44 | func (n *notify) SetNotifyID(Id uint64, conn ziface.IConnection) { |
| 45 | strId := n.genConnStrId(Id) |
nothing calls this directly
no test coverage detected