You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
463 B
25 lines
463 B
1 year ago
|
using System;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace UniRx
|
||
|
{
|
||
|
public sealed class BooleanDisposable : IDisposable, ICancelable
|
||
|
{
|
||
|
public bool IsDisposed { get; private set; }
|
||
|
|
||
|
public BooleanDisposable()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
internal BooleanDisposable(bool isDisposed)
|
||
|
{
|
||
|
IsDisposed = isDisposed;
|
||
|
}
|
||
|
|
||
|
public void Dispose()
|
||
|
{
|
||
|
if (!IsDisposed) IsDisposed = true;
|
||
|
}
|
||
|
}
|
||
|
}
|