DisableAuthentication disables authentication check for this method.
()
| 94 | |
| 95 | // DisableAuthentication disables authentication check for this method. |
| 96 | func (m *Method) DisableAuthentication() *Method { |
| 97 | m.authenticate = false |
| 98 | return m |
| 99 | } |
| 100 | |
| 101 | // Throttle throttles the method for each incoming request. The throttle |
| 102 | // algorithm is based on token bucket implementation: |
no outgoing calls
no test coverage detected