Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[improve][client] Update TypedMessageBuilder deliverAfter and deliverAt api comment #23969

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ public interface TypedMessageBuilder<T> extends Serializable {
* <p>The timestamp is milliseconds and based on UTC (eg: {@link System#currentTimeMillis()}.
*
* <p><b>Note</b>: messages are only delivered with delay when a consumer is consuming
* through a {@link SubscriptionType#Shared} subscription. With other subscription
* types, the messages will still be delivered immediately.
* through a {@link SubscriptionType#Shared} or {@link SubscriptionType#Key_Shared} subscription.
* With other subscription types, the messages will still be delivered immediately.
*
* @param timestamp
* absolute timestamp indicating when the message should be delivered to consumers
Expand All @@ -202,8 +202,8 @@ public interface TypedMessageBuilder<T> extends Serializable {
* Request to deliver the message only after the specified relative delay.
*
* <p><b>Note</b>: messages are only delivered with delay when a consumer is consuming
* through a {@link SubscriptionType#Shared} subscription. With other subscription
* types, the messages will still be delivered immediately.
* through a {@link SubscriptionType#Shared} or {@link SubscriptionType#Key_Shared} subscription.
* With other subscription types, the messages will still be delivered immediately.
*
* @param delay
* the amount of delay before the message will be delivered
Expand Down
Loading