IsRunning checks if value of given name is set to true in the pool.
(name string)
| 38 | |
| 39 | // IsRunning checks if value of given name is set to true in the pool. |
| 40 | func (p *StatusTable) IsRunning(name string) bool { |
| 41 | p.RLock() |
| 42 | defer p.RUnlock() |
| 43 | |
| 44 | return p.pool[name] |
| 45 | } |
no outgoing calls
no test coverage detected