Class GetHeapUsageCommandResponse
Response for Returns the JavaScript heap usage. It is the total usage of the corresponding isolate not scoped to a particular Runtime.
public sealed class GetHeapUsageCommandResponse : ICommandResponse<GetHeapUsageCommandSettings>, ICommandResponse
- Inheritance
-
GetHeapUsageCommandResponse
- Implements
- Inherited Members
- Extension Methods
Properties
BackingStorageSize
Size in bytes of backing storage for array buffers and external strings.
[JsonPropertyName("backingStorageSize")]
public double BackingStorageSize { get; set; }
Property Value
EmbedderHeapUsedSize
Used size in bytes in the embedder's garbage-collected heap.
[JsonPropertyName("embedderHeapUsedSize")]
public double EmbedderHeapUsedSize { get; set; }
Property Value
TotalSize
Allocated JavaScript heap size in bytes.
[JsonPropertyName("totalSize")]
public double TotalSize { get; set; }
Property Value
UsedSize
Used JavaScript heap size in bytes.
[JsonPropertyName("usedSize")]
public double UsedSize { get; set; }