Node.spawn_link
You're seeing just the function
spawn_link
, go back to Node module for more information.
Specs
Returns the PID of a new linked process started by the application of fun
on node
.
A link is created between the calling process and the new process, atomically.
If node
does not exist, a useless PID is returned (and due to the link, an exit
signal with exit reason :noconnection
will be received).
Inlined by the compiler.
Specs
Returns the PID of a new linked process started by the application of
module.function(args)
on node
.
A link is created between the calling process and the new process, atomically.
If node
does not exist, a useless PID is returned (and due to the link, an exit
signal with exit reason :noconnection
will be received).
Inlined by the compiler.