Skip to main content
Module

x/mess/deps.ts>DebouncedFunction

🌀 A modern, broker-agnostic, distributed message queue for deno
Latest
interface DebouncedFunction
import { type DebouncedFunction } from "https://deno.land/x/mess@0.0.1-pre.3/deps.ts";

A debounced function that will be delayed by a given wait time in milliseconds. If the method is called again before the timeout expires, the previous call will be aborted.

Type Parameters

T extends Array<unknown>

Call Signatures

(...args: T): void

Properties

readonly
pending: boolean

Returns a boolean whether a debounce call is pending or not.

Methods

clear(): void

Clears the debounce timeout and omits calling the debounced function.

flush(): void

Clears the debounce timeout and calls the debounced function immediately.