NewNoop creates a Gate implementation that doesn't enforce any limit.
()
| 31 | |
| 32 | // NewNoop creates a Gate implementation that doesn't enforce any limit. |
| 33 | func NewNoop() Gate { |
| 34 | return noopGate{} |
| 35 | } |
| 36 | |
| 37 | type noopGate struct{} |
| 38 |
no outgoing calls