Key represents the unique identifier for the resource.
()
| 32 | type Resource interface { |
| 33 | // Key represents the unique identifier for the resource. |
| 34 | Key() string |
| 35 | // Classes represents the rate limiting classes for the resource. A resource may |
| 36 | // belong in multiple classes. The limiter instance will limit access to the resource |
| 37 | // based on the limits of the first class that matches the configuration. If no |
no outgoing calls