Class Ack
Arguments to ack operations.
Implements
Inherited Members
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 |