Click or drag to resize
WorkQueueEnqueue Method (Action)
Enqueues action.

Namespace: Lawo.Threading.Tasks
Assembly: Lawo (in Lawo.dll) Version: 1.4.1707.27006
Syntax
C#
public Task Enqueue(
	Action action
)

Parameters

action
Type: SystemAction

Return Value

Type: Task
A task that represents the execution of action.
Exceptions
ExceptionCondition
ArgumentNullExceptionaction equals null.
Remarks
action is executed on an arbitrary thread pool thread.
See Also