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:
33
Vendor/Swan.Lite-3.1.0/Threading/WorkerState.cs
vendored
Normal file
33
Vendor/Swan.Lite-3.1.0/Threading/WorkerState.cs
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
namespace Swan.Threading
|
||||
{
|
||||
/// <summary>
|
||||
/// Enumerates the different states in which a worker can be.
|
||||
/// </summary>
|
||||
public enum WorkerState
|
||||
{
|
||||
/// <summary>
|
||||
/// The worker has been created and it is ready to start.
|
||||
/// </summary>
|
||||
Created,
|
||||
|
||||
/// <summary>
|
||||
/// The worker is running it cycle logic.
|
||||
/// </summary>
|
||||
Running,
|
||||
|
||||
/// <summary>
|
||||
/// The worker is running its delay logic.
|
||||
/// </summary>
|
||||
Waiting,
|
||||
|
||||
/// <summary>
|
||||
/// The worker is in the paused or suspended state.
|
||||
/// </summary>
|
||||
Paused,
|
||||
|
||||
/// <summary>
|
||||
/// The worker is stopped and ready for disposal.
|
||||
/// </summary>
|
||||
Stopped,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user