Semaphore constructor

Semaphore(
  1. int value
)

Create a new Semaphore object with the initial internal counter set to value.

Implementation

Semaphore(int value) : super(value);