mirror of
https://github.com/opensim/opensim.git
synced 2026-05-13 01:46:07 +08:00
14 lines
319 B
C#
14 lines
319 B
C#
namespace Amib.Threading.Internal
|
|
{
|
|
internal class CanceledWorkItemsGroup
|
|
{
|
|
public readonly static CanceledWorkItemsGroup NotCanceledWorkItemsGroup = new();
|
|
|
|
public CanceledWorkItemsGroup()
|
|
{
|
|
IsCanceled = false;
|
|
}
|
|
|
|
public bool IsCanceled { get; set; }
|
|
}
|
|
} |