Skip to content

Commit

Permalink
Jetty 10 - #8591: Indicate units of HttpClient properties (#8728)
Browse files Browse the repository at this point in the history
* Fixes #8591: Indicate units of HttpClient properties.
  • Loading branch information
cowwoc committed Oct 19, 2022
1 parent 5a9f3fb commit 481c801
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -901,26 +901,26 @@ public void setMaxRequestsQueuedPerDestination(int maxRequestsQueuedPerDestinati
}

/**
* @return the size of the buffer used to write requests
* @return the size of the buffer (in bytes) used to write requests
*/
@ManagedAttribute("The request buffer size")
@ManagedAttribute("The request buffer size in bytes")
public int getRequestBufferSize()
{
return requestBufferSize;
}

/**
* @param requestBufferSize the size of the buffer used to write requests
* @param requestBufferSize the size of the buffer (in bytes) used to write requests
*/
public void setRequestBufferSize(int requestBufferSize)
{
this.requestBufferSize = requestBufferSize;
}

/**
* @return the size of the buffer used to read responses
* @return the size of the buffer (in bytes) used to read responses
*/
@ManagedAttribute("The response buffer size")
@ManagedAttribute("The response buffer size in bytes")
public int getResponseBufferSize()
{
return responseBufferSize;
Expand Down

0 comments on commit 481c801

Please sign in to comment.