Comment on Resource efficient Thread Pools with ZigparentComments−chris_st4yNim newby here -- does Nim have something analogous to Go's channels for inter-thread communication?−goodpoint4yYes, it has channels as a built-in:https://nim-lang.org/docs/channels.htmlThings like Weave abstract away the need to manage threads and messaging explicitly.
Comments
Nim newby here -- does Nim have something analogous to Go's channels for inter-thread communication?
Yes, it has channels as a built-in:
https://nim-lang.org/docs/channels.html
Things like Weave abstract away the need to manage threads and messaging explicitly.