View Source GoogleApi.PubSub.V1.Model.ReceivedMessage (google_api_pub_sub v0.38.0)

A message and its corresponding acknowledgment ID.

Attributes

  • ackId (type: String.t, default: nil) - Optional. This ID can be used to acknowledge the received message.
  • deliveryAttempt (type: integer(), default: nil) - Optional. The approximate number of times that Pub/Sub has attempted to deliver the associated message to a subscriber. More precisely, this is 1 + (number of NACKs) + (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. Upon the first delivery of a given message, delivery_attempt will have a value of 1. The value is calculated at best effort and is approximate. If a DeadLetterPolicy is not set on the subscription, this will be 0.
  • message (type: GoogleApi.PubSub.V1.Model.PubsubMessage.t, default: nil) - Optional. The message.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.PubSub.V1.Model.ReceivedMessage{
  ackId: String.t() | nil,
  deliveryAttempt: integer() | nil,
  message: GoogleApi.PubSub.V1.Model.PubsubMessage.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.