ReceivedMessage

com.google.pubsub.v1.pubsub.ReceivedMessage
See theReceivedMessage companion object
final case class ReceivedMessage(ackId: String, message: Option[PubsubMessage], deliveryAttempt: Int, unknownFields: UnknownFieldSet) extends GeneratedMessage, Updatable[ReceivedMessage]

A message and its corresponding acknowledgment ID.

Value parameters

ackId

This ID can be used to acknowledge the received message.

deliveryAttempt

The approximate number of times that Cloud 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

The message.

Attributes

Companion
object
Source
ReceivedMessage.scala
Graph
Supertypes
trait Updatable[ReceivedMessage]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

Attributes

Source
ReceivedMessage.scala
def getField(`__field`: FieldDescriptor): PValue

Attributes

Source
ReceivedMessage.scala
def getFieldByNumber(`__fieldNumber`: Int): Any

Attributes

Source
ReceivedMessage.scala
override def serializedSize: Int

Attributes

Definition Classes
GeneratedMessage
Source
ReceivedMessage.scala

Returns a human-readable ASCII format representation of this message.

Returns a human-readable ASCII format representation of this message.

The original message can be decoded from this format by using fromAscii on the companion object.

Attributes

Returns

human-readable representation of this message.

Source
ReceivedMessage.scala

Attributes

Source
ReceivedMessage.scala
def withUnknownFields(`__v`: UnknownFieldSet): ReceivedMessage

Attributes

Source
ReceivedMessage.scala
def writeTo(`_output__`: CodedOutputStream): Unit

Serializes the message into the given coded output stream

Serializes the message into the given coded output stream

Attributes

Source
ReceivedMessage.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
final def toByteArray: Array[Byte]

Serializes the message and returns a byte array containing its raw bytes

Serializes the message and returns a byte array containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toByteString: ByteString

Serializes the message and returns a ByteString containing its raw bytes

Serializes the message and returns a ByteString containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toPMessage: PMessage

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
def update(ms: Lens[ReceivedMessage, ReceivedMessage] => () => ReceivedMessage*): A

Attributes

Inherited from:
Updatable
Source
Lenses.scala
final def writeDelimitedTo(output: OutputStream): Unit

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def writeTo(output: OutputStream): Unit

Serializes the message into the given output stream

Serializes the message into the given output stream

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala