- Mutate Global Variable
- Mutate Using Pointer (Mutate String)
- No Variable Mutation
- Spawn - Example 1
- Spawn - Threadpool work queue
- Threaded Server with Prompt
spawn
requiresimport threadpool
, but removes the need to manually setup thevar myThread : Thread[{type}]
target.spawn
allows retrieval of a value from a threaded process, by way of the carat (^) operator.- There may be a way to retrieve data from a manually created thread I am not aware of yet.
- HOWEVER, manually setting up the
Thread[{type}]
and usingcreateThread({thread}, {proc}, {proc_args})
will afford ability to manually specify processor core pinning.- Unsure if one can specify processor pinning with
spawn
.
- Unsure if one can specify processor pinning with