On this page
std/threadpool
Source EditImplements Nim's parallel & spawn statements.
Unstable API.
See also
- threads module for basic thread support
 - locks module for locks and condition variables
 - asyncdispatch module for asynchronous IO
 
Imports
Types
- 
     
FlowVarBase = ref FlowVarBaseObj - Untyped base class for FlowVar[T]. Source Edit
 
Consts
Procs
- 
      
proc awaitAndThen[T](fv: FlowVar[T]; action: proc (x: T) {.closure.}) - 
      
Blocks until
fvis available and then passes its value toaction.Note that due to Nim's parameter passing semantics, this means that
Source EditTdoesn't need to be copied, soawaitAndThencan sometimes be more efficient than the ^ proc. - 
      
proc blockUntilAny(flowVars: openArray[FlowVarBase]): int {....raises: [], tags: [], forbids: [].} - 
      
Awaits any of the given
flowVars. Returns the index of oneflowVarfor which a value arrived.A
flowVaronly supports one call toblockUntilAnyat the same time. That means if youblockUntilAny([a,b])andblockUntilAny([b,c])the second call will only block untilc. If there is noflowVarleft to be able to wait on, -1 is returned.Note: This results in non-deterministic behaviour and should be avoided.
Source Edit - 
      
proc parallel(body: untyped) {.magic: "Parallel", ...raises: [], tags: [], forbids: [].} - 
      
A parallel section can be used to execute a block in parallel.
bodyhas to be in a DSL that is a particular subset of the language.Please refer to the manual for further information.
Source Edit - 
      
proc pinnedSpawn(id: ThreadId; call: sink typed) {.magic: "Spawn", ...raises: [], tags: [], forbids: [].} - 
      
Always spawns a new task on the worker thread with
id, so that thecallis always executed on the thread.
Source Editcallhas to be a proc callp(...)wherepis gcsafe and has a return type that is eithervoidor compatible withFlowVar[T]. - 
      
proc preferSpawn(): bool {....raises: [], tags: [], forbids: [].} - 
      
Use this proc to determine quickly if a
spawnor a direct call is preferable.If it returns
Source Edittrue, aspawnmay make sense. In general it is not necessary to call this directly; use the spawnX template instead. - 
      
proc setMaxPoolSize(size: range[1 .. MaxThreadPoolSize]) {....raises: [], tags: [], forbids: [].} - Sets the maximum thread pool size. The default value of this is MaxThreadPoolSize. Source Edit
 - 
      
proc spawn(call: sink typed) {.magic: "Spawn", ...raises: [], tags: [], forbids: [].} - 
      
Always spawns a new task, so that the
callis never executed on the calling thread.
Source Editcallhas to be a proc callp(...)wherepis gcsafe and has a return type that is eithervoidor compatible withFlowVar[T]. 
Templates
- 
      
template spawnX(call) - 
      
Spawns a new task if a CPU core is ready, otherwise executes the call in the calling thread.
Usually, it is advised to use the spawn proc in order to not block the producer for an unknown amount of time.
Source Editcallhas to be a proc callp(...)wherepis gcsafe and has a return type that is either 'void' or compatible withFlowVar[T]. 
© 2006–2024 Andreas Rumpf
Licensed under the MIT License.
 https://nim-lang.org/docs/threadpool.html