C# Класс Indiefreaks.Xna.Threading.Semaphore

A semaphore class.
Показать файл Открыть проект

Открытые методы

Метод Описание
Release ( ) : void

Adds one resource.

Semaphore ( int maximumCount ) : System.Threading

Creates a new instance of the Semaphore class.

WaitOne ( ) : void

Blocks the calling thread until resources are made available, then consumes one resource.

Описание методов

Release() публичный Метод

Adds one resource.
public Release ( ) : void
Результат void

Semaphore() публичный Метод

Creates a new instance of the Semaphore class.
public Semaphore ( int maximumCount ) : System.Threading
maximumCount int
Результат System.Threading

WaitOne() публичный Метод

Blocks the calling thread until resources are made available, then consumes one resource.
public WaitOne ( ) : void
Результат void