Show / Hide Table of Contents

Class ModifyAckDeadlineRequest

Request for the ModifyAckDeadline method.

Inheritance
object
ModifyAckDeadlineRequest
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Pubsub.v1.Data
Assembly: Google.Apis.Pubsub.v1.dll
Syntax
public class ModifyAckDeadlineRequest : IDirectResponseSchema

Properties

AckDeadlineSeconds

Required. The new ack deadline with respect to the time this request was sent to the Pub/Sub system. For example, if the value is 10, the new ack deadline will expire 10 seconds after the ModifyAckDeadline call was made. Specifying zero might immediately make the message available for delivery to another subscriber client. This typically results in an increase in the rate of message redeliveries (that is, duplicates). The minimum deadline you can specify is 0 seconds. The maximum deadline you can specify in a single request is 600 seconds (10 minutes).

Declaration
[JsonProperty("ackDeadlineSeconds")]
public virtual int? AckDeadlineSeconds { get; set; }
Property Value
Type Description
int?

AckIds

Required. List of acknowledgment IDs.

Declaration
[JsonProperty("ackIds")]
public virtual IList<string> AckIds { get; set; }
Property Value
Type Description
IList<string>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX