setNumberOfIsolates method

Application setNumberOfIsolates(
  1. int numberOfIsolates
)

setNumberOfIsolates is a method that sets the number of isolates of the application. by default it's set to 1.

Implementation

Application setNumberOfIsolates(int numberOfIsolates) {
  this.numberOfIsolates = numberOfIsolates;
  return this;
}