Skip to content

Commit

Permalink
fix: adding BetaApi annotation on AckReplyConsumerWithResponse for Ex…
Browse files Browse the repository at this point in the history
…actly Once Delivery (#1097)
  • Loading branch information
mmicatka committed Apr 27, 2022
1 parent 13d5137 commit 0e89054
Showing 1 changed file with 3 additions and 0 deletions.
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

0 comments on commit 0e89054

Please sign in to comment.