Php/docs/class.syncmutex

提供:Dev Guides
< Php
2020年12月14日 (月) 13:09時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

(PECL sync >= 1.0.0)

はじめに

A cross-platform, native implementation of named and unnamed countable mutex objects.

A mutex is a mutual exclusion object that restricts access to a shared resource (e.g. a file) to a single instance. Countable mutexes acquire the mutex a single time and internally track the number of times the mutex is locked. The mutex is unlocked as soon as it goes out of scope or is unlocked the same number of times that it was locked.


クラス概要


SyncMutex {

/* メソッド */

public __construct ([ string $name ] )

public lock ([ int $wait = -1 ] ) : bool

public unlock ([ bool $all = false ] ) : bool

}

目次