rss property

num get rss

The number of bytes of the current Deno's process resident set size, which is the amount of memory occupied in main memory (RAM).

Implementation

_i2.num get rss => _i3.getProperty(
      this,
      'rss',
    );
set rss (num value)

Implementation

set rss(_i2.num value) {
  _i3.setProperty(
    this,
    'rss',
    value,
  );
}