public interface ReceivedMessageOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
String |
getAckId()
This ID can be used to acknowledge the received message.
|
com.google.protobuf.ByteString |
getAckIdBytes()
This ID can be used to acknowledge the received message.
|
int |
getDeliveryAttempt()
Delivery attempt counter is 1 + (the sum of number of NACKs and number of
ack_deadline exceeds) for this message.
|
PubsubMessage |
getMessage()
The message.
|
PubsubMessageOrBuilder |
getMessageOrBuilder()
The message.
|
boolean |
hasMessage()
The message.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofString getAckId()
This ID can be used to acknowledge the received message.
string ack_id = 1;com.google.protobuf.ByteString getAckIdBytes()
This ID can be used to acknowledge the received message.
string ack_id = 1;boolean hasMessage()
The message.
.google.pubsub.v1.PubsubMessage message = 2;PubsubMessage getMessage()
The message.
.google.pubsub.v1.PubsubMessage message = 2;PubsubMessageOrBuilder getMessageOrBuilder()
The message.
.google.pubsub.v1.PubsubMessage message = 2;int getDeliveryAttempt()
Delivery attempt counter is 1 + (the sum of number of NACKs and number of ack_deadline exceeds) for this message. A NACK is any call to ModifyAckDeadline with a 0 deadline. An ack_deadline exceeds event is whenever a message is not acknowledged within ack_deadline. Note that ack_deadline is initially Subscription.ackDeadlineSeconds, but may get extended automatically by the client library. The first delivery of a given message will have this value as 1. The value is calculated at best effort and is approximate. If a DeadLetterPolicy is not set on the subscription, this will be 0. <b>EXPERIMENTAL:</b> This feature is part of a closed alpha release. This API might be changed in backward-incompatible ways and is not recommended for production use. It is not subject to any SLA or deprecation policy.
int32 delivery_attempt = 3;Copyright © 2020 Google LLC. All rights reserved.