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

AdaptMessageResponse

import type { AdaptMessageResponse } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

Message sent by the adapter to the client.

interface AdaptMessageResponse {
last?: boolean;
payload?: Uint8Array;
stateUpdates?: {
[key: string]: string;
}
;
}

§Properties

§
last?: boolean
[src]

Optional. Indicates whether this is the last AdaptMessageResponse in the stream. This field may be optionally set by the server. Clients should not rely on this field being set in all cases.

§
payload?: Uint8Array
[src]

Optional. Uninterpreted bytes from the underlying wire protocol.

§
stateUpdates?: {
[key: string]: string;
}
[src]

Optional. Opaque state updates to be applied by the client.