Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. PressureObserver

PressureObserver

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.

Note: This feature is available inWeb Workers, except forService Workers.

Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.

ThePressureObserver interface is part of theCompute Pressure API and is used to observe the pressure changes of system resources such as the CPU.

Constructor

PressureObserver()Experimental

Creates and returns a newPressureObserver object.

Static properties

PressureObserver.knownSourcesRead onlyExperimental

Returns an array ofsource values supported by the user agent.

Instance methods

PressureObserver.observe()Experimental

Invokes the pressure observer's callback function when a pressure record for the specifiedsource is observed.

PressureObserver.unobserve()Experimental

Stops the pressure observer callback from receiving pressure records from the specifiedsource.

PressureObserver.disconnect()Experimental

Stops the pressure observer callback from receiving pressure records from all sources.

PressureObserver.takeRecords()Experimental

Returns the current list of pressure records stored in the pressure observer, emptying it out.

Examples

Log current pressure

This example creates aPressureObserver and takes action whenever there is a pressure change. The sample interval is set to 1000ms, meaning that there will be updates at most every second.

js
function callback(records) {  const lastRecord = records[records.length - 1];  console.log(`Current pressure ${lastRecord.state}`);  if (lastRecord.state === "critical") {    // disable video feeds  } else if (lastRecord.state === "serious") {    // disable video filter effects  } else {    // enable all video feeds and filter effects  }}try {  const observer = new PressureObserver(callback);  await observer.observe("cpu", {    sampleInterval: 1000, // 1000ms  });} catch (error) {  // report error setting up the observer}

Specifications

Specification
Compute Pressure Level 1
# the-pressureobserver-object

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp