()
| 462 | } |
| 463 | |
| 464 | func (pm *PolicyManager) RulesCount() int { |
| 465 | pm.mu.RLock() |
| 466 | defer pm.mu.RUnlock() |
| 467 | return len(pm.Rules) |
| 468 | } |
| 469 | |
| 470 | func (pm *PolicyManager) LastMatchedRule() (Rule, bool) { |
| 471 | pm.mu.RLock() |
no outgoing calls
no test coverage detected