Alias TaskReadWriteMutex.Policy
The policy
with which the mutex should operate.
The policy
determines how the acquisition of the locks is
performed and can be used to tune the mutex according to the
underlying algorithm in which it is used.
According to the provided policy
, the mutex will either favor
reading or writing tasks and could potentially starve the
respective opposite.
cf. core.sync.rwmutex.ReadWriteMutex.Policy
Declaration
class TaskReadWriteMutex
{
// ...
alias Policy = vibe .core .sync .ReadWriteMutexState!(false);
// ...
}
Authors
Leonid Kramer, Sönke Ludwig, Manuel Frischknecht
Copyright
© 2012-2015 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.