In this guide, we will discuss Erlang spawn on Node. This is used to create a new process on a node.
Syntax
spawn(Node,Function)
Parameters
- Node − The node on which the function needs to be spawned.
- Function − The function which needs to be spawned.
Return Value
This method returns a process id.
For example
-module(helloworld). -export([start/0]). start() -> spawn(node(),fun() -> server("Hello") end). server(Message) -> io:fwrite("~p",[Message]).
Output
When we run the above program, we will get the following result.
“Hello”
Next Topic : Click Here
Pingback: Erlang - node | Adglob Infosystem Pvt Ltd
Pingback: Erlang - Distributed Programming | Adglob Infosystem Pvt Ltd