(scopeMap map[string][]string, scope string, routeId string)
| 129 | } |
| 130 | |
| 131 | func addStrToScopeMap(scopeMap map[string][]string, scope string, routeId string) { |
| 132 | scopeSubs := scopeMap[scope] |
| 133 | scopeSubs = utilfn.AddElemToSliceUniq(scopeSubs, routeId) |
| 134 | scopeMap[scope] = scopeSubs |
| 135 | } |
| 136 | |
| 137 | func (b *BrokerType) Unsubscribe(subRouteId string, eventName string) { |
| 138 | // log.Printf("[wps] unsub %s %s\n", subRouteId, eventName) |
no test coverage detected