Show / Hide Table of Contents

Class Ack

Arguments to ack operations.

Inheritance
object
Ack
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.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class Ack : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

IgnoreNotFound

By default, an attempt to ack a message that does not exist will fail with a NOT_FOUND error. With ignore_not_found set to true, the ack will succeed even if the message does not exist. This is useful for unconditionally acking a message, even if it is missing or has already been acked.

Declaration
[JsonProperty("ignoreNotFound")]
public virtual bool? IgnoreNotFound { get; set; }
Property Value
Type Description
bool?

Key

Required. The primary key of the message to be acked.

Declaration
[JsonProperty("key")]
public virtual IList<object> Key { get; set; }
Property Value
Type Description
IList<object>

Queue

Required. The queue where the message to be acked is stored.

Declaration
[JsonProperty("queue")]
public virtual string Queue { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX