Skip to content

Commit

Permalink
Fixes Javadoc issue.
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Pericas-Geertsen <[email protected]>
  • Loading branch information
spericas committed Dec 18, 2024
1 parent 3fc680a commit 5f34429
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ interface AimdLimitConfigBlueprint extends Prototype.Factory<AimdLimit> {

/**
* How many requests can be enqueued waiting for a permit after
* the {@link #maxLimit()} is reached.
* the max limit is reached.
* Note that this may not be an exact behavior due to concurrent invocations.
* We use {@link java.util.concurrent.Semaphore#getQueueLength()} in the
* {@link io.helidon.common.concurrency.limits.AimdLimit} implementation.
Expand All @@ -107,7 +107,7 @@ interface AimdLimitConfigBlueprint extends Prototype.Factory<AimdLimit> {
* @return number of requests to enqueue
*/
@Option.Configured
@Option.DefaultInt(FixedLimit.DEFAULT_QUEUE_LENGTH)
@Option.DefaultInt(AimdLimit.DEFAULT_QUEUE_LENGTH)
int queueLength();

/**
Expand All @@ -117,7 +117,7 @@ interface AimdLimitConfigBlueprint extends Prototype.Factory<AimdLimit> {
* @return duration of the timeout
*/
@Option.Configured
@Option.Default(FixedLimit.DEFAULT_QUEUE_TIMEOUT_DURATION)
@Option.Default(AimdLimit.DEFAULT_QUEUE_TIMEOUT_DURATION)
Duration queueTimeout();

/**
Expand Down

0 comments on commit 5f34429

Please sign in to comment.