Skip to content
New issue

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

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

Already on GitHub? # to your account

fix: adding BetaApi annotation for Exactly Once Delivery #1097

Merged
merged 1 commit into from
Apr 27, 2022
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 @@ -16,6 +16,7 @@

package com.google.cloud.pubsub.v1;

import com.google.api.core.BetaApi;
import java.util.concurrent.Future;

/**
Expand All @@ -32,6 +33,8 @@
* with an AckResponse.SUCCESS. Because re-deliveries are possible, you should ensure that your
* processing code is idempotent, as you may receive any given message more than once.
*/
@BetaApi(
"This is a preview feature. For more details, see https://cloud.google.com/pubsub/docs/exactly-once-delivery.")
public interface AckReplyConsumerWithResponse {
/**
* Acknowledges that the message has been successfully processed. The service will not send the
Expand Down