Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/GenericPlatform
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformCriticalSection.h |
| Include | #include "GenericPlatform/GenericPlatformCriticalSection.h" |
Syntax
template<class CriticalSection>
class TGenericPlatformRWLock
Remarks
TGenericPlatformRWLock - Read/Write Mutex
- Provides non-recursive Read/Write (or shared-exclusive) access.
- As a fallback default for non implemented platforms, using a single FCriticalSection to provide complete single mutual exclusion - no seperate Read/Write access.
Constructors
| Type | Name | Description | |
|---|---|---|---|
TGenericPlatformRWLock
(
const TGenericPlatformRWLock& |
Destructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | ReadLock () |
||
| void | ReadUnlock () |
||
| bool | TryReadLock () |
||
| bool | TryWriteLock () |
||
| void | WriteLock () |
||
| void | WriteUnlock () |
Operators
| Type | Name | Description | |
|---|---|---|---|
| TGenericPlatformRWLock & | operator=
(
const TGenericPlatformRWLock& |