Dart_PerformanceMode class abstract

Constructors

Dart_PerformanceMode()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

Dart_PerformanceMode_Default → const int
Balanced
Dart_PerformanceMode_Latency → const int
Optimize for low latency, at the expense of throughput and memory overhead by performing work in smaller batches (requiring more overhead) or by delaying work (requiring more memory). An embedder should not remain in this mode indefinitely.
Dart_PerformanceMode_Memory → const int
Optimize for low memory, at the expensive of throughput and latency by more frequently performing work.
Dart_PerformanceMode_Throughput → const int
Optimize for high throughput, at the expense of latency and memory overhead by performing work in larger batches with more intervening growth.