Got at least one data fetching method working; turns out, we can't use a patched LogicStack to get the data
This commit is contained in:
24
Vendor/Swan.Lite-3.1.0/Threading/AtomicBoolean.cs
vendored
Normal file
24
Vendor/Swan.Lite-3.1.0/Threading/AtomicBoolean.cs
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace Swan.Threading
|
||||
{
|
||||
/// <summary>
|
||||
/// Fast, atomic boolean combining interlocked to write value and volatile to read values.
|
||||
/// </summary>
|
||||
public sealed class AtomicBoolean : AtomicTypeBase<bool>
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="AtomicBoolean"/> class.
|
||||
/// </summary>
|
||||
/// <param name="initialValue">if set to <c>true</c> [initial value].</param>
|
||||
public AtomicBoolean(bool initialValue = default)
|
||||
: base(initialValue ? 1 : 0)
|
||||
{
|
||||
// placeholder
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override bool FromLong(long backingValue) => backingValue != 0;
|
||||
|
||||
/// <inheritdoc/>
|
||||
protected override long ToLong(bool value) => value ? 1 : 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user