Ack
import type { Ack } from "https://googleapis.deno.dev/v1/spanner:v1.ts";Arguments to ack operations.
interface Ack {
ignoreNotFound?: boolean;
key?: any[];
queue?: string;
}§Properties
§
ignoreNotFound?: boolean
[src]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.