Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.29 KB

File metadata and controls

39 lines (27 loc) · 1.29 KB

Function: ThreadNew

Creates a new thread of execution based on the passed closure/lambda.

Method Signature

ThreadNew(runnable=[function], attributes=[struct], name=[string], priority=[string])

Arguments

Argument Type Required Description Default
runnable function true The closure/lambda to execute in the new thread.
attributes struct false A struct of data to bind into the thread's scope. {}
name string false
priority string false The priority of the thread. Possible values are "high", "low", and "normal". Default is "normal". normal

Examples

Related