Skip to content

Commit

Permalink
Merged branch 'jetty-10.0.x' into 'jetty-11.0.x'.
Browse files Browse the repository at this point in the history
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
  • Loading branch information
sbordet committed Oct 19, 2022
2 parents 38e7f1e + 481c801 commit 9e4e680
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 9e4e680

Please sign in to comment.