taskCount property

int taskCount

The number of concurrent tasks for downloading a map. A valid task count is between 1 to 64. When the value set is outside the valid range, then it is clamped to a valid range:

  • when passed in value is 0 or less, then task count is set to 1;
  • when passed in value is 65 or more, then task count is set to 64. Gets the number of concurrent tasks for downloading a map.

Implementation

int get taskCount;
void taskCount=(int value)

The number of concurrent tasks for downloading a map. A valid task count is between 1 to 64. When the value set is outside the valid range, then it is clamped to a valid range:

  • when passed in value is 0 or less, then task count is set to 1;
  • when passed in value is 65 or more, then task count is set to 64. Sets the number of concurrent tasks for downloading a map.

Implementation

set taskCount(int value);