func()

in models/v3/msgs/msgs.go [88:96]


func (n Notifications) Recycle() {
	if n.promise != nil {
		select {
		case <-n.promise:
		default:
		}
		conn.PromisePool.Put(n.promise)
	}
}