Firefox Tomorrow

web api instance method

PressureObserver: unobserve() method

View on MDN ↗

Limited availabilityAvailable in workersSecure context

The unobserve() method of the PressureObserver interface stops the pressure observer callback from receiving pressure records from the specified source.

Syntax

unobserve(source)

Parameters

  • source
    • : A string specifying which source to unobserve.

Return value

None (undefined).

Examples

Stop observing a specific source

The following example shows how to stop observing the “gpu” source after the observer previously observed both, the “cpu” and “gpu” sources.

const observer = new PressureObserver(callback);

observer.observe("cpu");
observer.observe("gpu");

// Callback now gets called whenever the pressure state changes for 'cpu' or 'gpu'.

observer.unobserve("gpu");

// Callback now only gets called whenever the pressure state changes for 'cpu'.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.