encodingIsolatePoolSize top-level property

int encodingIsolatePoolSize
final

Implementation

final int encodingIsolatePoolSize = math.max(
  kMinIsolatePoolSize,
  math.min(
    Platform.numberOfProcessors ~/ kNumberOfProcessorsFactor,
    kMaxIsolatePoolSize,
  ),
);