Class Async
A module that abstracts and executes code in the background
Inheritance
System.Object
Async
Namespace: Netly.Core
Assembly: Netly.Core.dll
Syntax
public static class Async : object
Methods
SafePool(Action)
Execute an (Action) using (Safe ThreadPool)
Declaration
public static bool SafePool(Action action)
Parameters
| Type | Name | Description |
|---|---|---|
| Action | action | Action / Callback |
Returns
| Type | Description |
|---|---|
| System.Boolean |
UnsafePool(Action)
Execute an (Action) using (Unsafe ThreadPool)
Declaration
public static bool UnsafePool(Action action)
Parameters
| Type | Name | Description |
|---|---|---|
| Action | action | Action / Callback |
Returns
| Type | Description |
|---|---|
| System.Boolean |