Skip to content

Commit

Permalink
Fix InboundMessageQueue Javadoc (#5451)
Browse files Browse the repository at this point in the history
Indicate which executor are callbacks invoked from.

Signed-off-by: Thomas Segismont <[email protected]>
  • Loading branch information
tsegismont authored Jan 16, 2025
1 parent 35444ab commit fa915af
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,19 @@ public final boolean test(M msg) {
}

/**
* Handle resume, executed on the event-loop thread.
* Handle resume, executed on the producer executor.
*/
protected void handleResume() {
}

/**
* Handler pause, executed on the event-loop thread
* Handler pause, executed on the producer executor.
*/
protected void handlePause() {
}

/**
* Handle a message, executed on the context thread
* Handle a message, executed on the consumer executor.
*
* @param msg the message
*/
Expand Down

0 comments on commit fa915af

Please sign in to comment.