()
| 1588 | public Throttler throttler = null; |
| 1589 | |
| 1590 | public void initThrottler() { |
| 1591 | this.throttler = new Throttler(this.tokenBucket); |
| 1592 | } |
| 1593 | |
| 1594 | public java.util.concurrent.CompletableFuture<Void> throttle(Object... args) { |
| 1595 | if (this.throttler == null) { |