spawn package:distributed-process
Asynchronous version of
spawn
(
spawn is defined in terms of
spawnAsync and
expect)
Spawn a new process, supplying it with a new
ReceivePort and
return the corresponding
SendPort.
Create a new typed channel, spawn a process on the local node, passing
it the receive port, and return the send port
Spawn a process and link to it
Note that this is just the sequential composition of
spawn and
link. (The
Unified semantics that underlies Cloud
Haskell does not even support a synchronous link operation)
Spawn a process on the local node
Like
spawnLink, but monitor the spawned process
Spawn a child process, have the child link to the parent and the
parent monitor the child
SpawnRef are used to return pids of spawned processes
SpawnRef are used to return pids of spawned processes
(Asynchronius) reply from spawn
fired whenever a local process is spawned