UnfairSemaphore constructor

UnfairSemaphore(
  1. int value
)

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

Implementation

UnfairSemaphore(int value) : super(value);