Files
speckle-sharp-connectors/Sdk/Speckle.Connectors.Common.Tests/Threading/Funcs.cs
T
Adam Hathcock b807be35ff test: add tests for threadcontext (#651)
* add tests for threadcontext

* add test for extensions

* remove needed usage
2025-03-07 16:27:58 +03:00

19 lines
352 B
C#

using System.Diagnostics.CodeAnalysis;
namespace Speckle.Connectors.Common.Tests.Threading;
[SuppressMessage("Design", "CA1008:Enums should have zero value")]
public enum Funcs
{
RunMain,
RunWorker,
RunMainAsync,
RunWorkerAsync,
WorkerToMainAsync,
MainToWorker,
WorkerToMain,
MainToWorkerAsync,
RunMainAsync_T,
RunWorkerAsync_T
}