Class ThreadUtils
Inheritance
System.Object
ThreadUtils
Assembly: Eco.Core.dll
Syntax
public static class ThreadUtils : Object
Methods
Delay(Double, Action)
Declaration
public static void Delay(double seconds, Action action)
Parameters
Type |
Name |
Description |
System.Double |
seconds |
|
System.Action |
action |
|
SplitWork<T>(T[], Action<T>)
Declaration
public static void SplitWork<T>(T[] work, Action<T> processor)
Parameters
Type |
Name |
Description |
T[] |
work |
|
System.Action<T> |
processor |
|
Type Parameters
SplitWork<T>(List<T>, Action<T>)
Declaration
public static void SplitWork<T>(List<T> work, Action<T> processor)
Parameters
Type |
Name |
Description |
System.Collections.Generic.List<T> |
work |
|
System.Action<T> |
processor |
|
Type Parameters