Back to Content

IdleDetector: start() method

files/en-us/web/api/idledetector/start/index.md

latest1.5 KB
Original Source

{{securecontext_header}}{{APIRef("Idle Detection API")}}{{SeeCompatTable}}{{AvailableInWorkers("window_and_dedicated")}}

The start() method of the {{domxref("IdleDetector")}} interface returns a {{jsxref("Promise")}} that resolves when the detector starts listening for changes in the user's idle state. This method takes an optional options object with the threshold in milliseconds where inactivity should be reported and signal for an AbortSignal to abort the idle detector.

Syntax

js-nolint
start()
start(options)

Parameters

  • options {{optional_inline}}
    • : An object with the following properties:
      • threshold
        • : The minimum number of idle milliseconds before reporting should begin.
      • signal
        • : A reference to an {{domxref('AbortSignal')}} instance allowing you to abort idle detection.

Return value

A {{jsxref("Promise")}}.

Exceptions

  • NotAllowedError {{domxref("DOMException")}}

Examples

The following example shows how to start idle detection using the options argument. It retrieves an instance of AbortSignal from an instance of {{domxref("AbortController")}}.

js
const controller = new AbortController();
const signal = controller.signal;

await idleDetector.start({
  threshold: 60_000,
  signal,
});
console.log("IdleDetector is active.");

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}