RetryPolicy

com.google.pubsub.v1.pubsub.RetryPolicy
See theRetryPolicy companion object
final case class RetryPolicy(minimumBackoff: Option[Duration], maximumBackoff: Option[Duration], unknownFields: UnknownFieldSet) extends GeneratedMessage, Updatable[RetryPolicy]

A policy that specifies how Cloud Pub/Sub retries message delivery.

Retry delay will be exponential based on provided minimum and maximum backoffs. https://en.wikipedia.org/wiki/Exponential_backoff.

RetryPolicy will be triggered on NACKs or acknowledgement deadline exceeded events for a given message.

Retry Policy is implemented on a best effort basis. At times, the delay between consecutive deliveries may not match the configuration. That is, delay can be more or less than configured backoff.

Value parameters

maximumBackoff

The maximum delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 600 seconds.

minimumBackoff

The minimum delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 10 seconds.

Attributes

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

Members list

Value members

Concrete methods

Attributes

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

Attributes

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

Attributes

Source
RetryPolicy.scala
override def serializedSize: Int

Attributes

Definition Classes
GeneratedMessage
Source
RetryPolicy.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
RetryPolicy.scala

Attributes

Source
RetryPolicy.scala

Attributes

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

Attributes

Source
RetryPolicy.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
RetryPolicy.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[RetryPolicy, RetryPolicy] => () => RetryPolicy*): 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