在实现 golang 中发布订阅模式的时候,需要按照优先级排序回调函数;golang 中的 map 是无序的,需要手动取出 key,并对key进行排序,下面是排序一块的代码段:
[ 1 => [func1,func2] 0 => [func5,func6] 2 => [func3,func4] ] ... [func5,func6,func1,func2,func3,func4]
func (ed *eventdispatcher) SortListeners(event string) { ed.sorted[event] = nil // 发布订阅模式中函数执行的优先级 priorities := make([]int,0) for priority,_ := range ed.listeners[event] { priorities = append(priorities,priority) } // 对优先级的数字进行排序 sort.Ints(priorities) sorted := make([]func(interface {}) interface {},0) // 按照优先级顺序合并 map for _,priority := range priorities { sorted = append(sorted,ed.listeners[event][priority]...) } ed.sorted[event] = sorted }