You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can provide your own rate limiter by implementing the [`RateLimiter`](https://github.com/java-operator-sdk/java-operator-sdk/blob/ce4d996ee073ebef5715737995fc3d33f4751275/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/rate/RateLimiter.java)
23
-
interface.
19
+
## Default Rate Limiter
24
20
25
-
You can set this custom implementation using explicit [configuration](operations/configuration.md) or using the `rateLimiter`
26
-
field of the `@ControllerConfiguration` annotation.
27
-
For the annotation approach, similarly to `Retry` implementations,
28
-
`RateLimiter` implementations must provide an accessible, no-arg constructor for instantiation
29
-
purposes and can further be automatically configured from your own annotation, provided that
30
-
your `RateLimiter` implementation also implements the `AnnotationConfigurable` interface,
0 commit comments