ChunkSemaphore constructor

ChunkSemaphore(
  1. int _permits
)

Implementation

ChunkSemaphore(this._permits) {
  if (_permits < 1) _permits = 1;
}