File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -839,22 +839,22 @@ message ReceivedMessage {
839839 // The message.
840840 PubsubMessage message = 2 ;
841841
842- // Delivery attempt counter is 1 + (the sum of number of NACKs and number of
843- // ack_deadline exceeds) for this message.
842+ // The approximate number of times that Cloud Pub/Sub has attempted to deliver
843+ // the associated message to a subscriber.
844+ //
845+ // More precisely, this is 1 + (number of NACKs) +
846+ // (number of ack_deadline exceeds) for this message.
844847 //
845848 // A NACK is any call to ModifyAckDeadline with a 0 deadline. An ack_deadline
846849 // exceeds event is whenever a message is not acknowledged within
847850 // ack_deadline. Note that ack_deadline is initially
848851 // Subscription.ackDeadlineSeconds, but may get extended automatically by
849852 // the client library.
850853 //
851- // The first delivery of a given message will have this value as 1. The value
852- // is calculated at best effort and is approximate.
854+ // Upon the first delivery of a given message, `delivery_attempt` will have a
855+ // value of 1. The value is calculated at best effort and is approximate.
853856 //
854857 // If a DeadLetterPolicy is not set on the subscription, this will be 0.
855- // <b>EXPERIMENTAL:</b> This feature is part of a closed alpha release. This
856- // API might be changed in backward-incompatible ways and is not recommended
857- // for production use. It is not subject to any SLA or deprecation policy.
858858 int32 delivery_attempt = 3 ;
859859}
860860
You can’t perform that action at this time.
0 commit comments