Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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.

§
key?: any[]
[src]

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

§
queue?: string
[src]

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