Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var GoRoutineFactory goRoutineFactory
Functions ¶
func Go ¶
func Go(function func())
Go Starts the execution of the function passed as argument in a new Goroutine THING TO NOTE: If the function you are intending to run inside a goroutine takes any parameters, before calling this function, create local variable for every argument (so that evaluation of the argument happens immediately) and then pass those local variables as arguments Ex.
var worker *workerT worker = &workerT{ workerID: i, } rruntime.Go(func() { rt.workerProcess(worker) })
func GoForWarehouse ¶ added in v0.1.10
func GoForWarehouse(function func())
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.