Elixir语言中 Node.start
相关用法介绍如下。
用法:
start(name, type \\ :longnames, tick_time \\ 15000)
@spec start(node(), :longnames | :shortnames, non_neg_integer()) ::
{:ok, pid()} | {:error, term()}
将非分布式节点变成分布式节点。
此函数启动:net_kernel
和其他相关进程。
这个函数在实践中很少被调用。相反,节点是通过命令行使用--sname
和--name
标志命名和启动的。如果需要使用该函数动态命名节点,请通过调用epmd -daemon
确保epmd
操作系统进程正在运行。
当分发已经启动时调用这个函数,无论是通过命令行接口还是动态的,都会返回一个错误。
例子
{:ok, pid} = Node.start(:example, :shortnames, 15000)
相关用法
- Elixir Node.ping用法及代码示例
- Elixir NaiveDateTime用法及代码示例
- Elixir NaiveDateTime.utc_now用法及代码示例
- Elixir NaiveDateTime.from_gregorian_seconds用法及代码示例
- Elixir NaiveDateTime.truncate用法及代码示例
- Elixir NaiveDateTime.from_erl!用法及代码示例
- Elixir NaiveDateTime.from_iso8601用法及代码示例
- Elixir NaiveDateTime.from_erl用法及代码示例
- Elixir NaiveDateTime.convert!用法及代码示例
- Elixir NaiveDateTime.new!用法及代码示例
- Elixir NaiveDateTime.to_erl用法及代码示例
- Elixir NaiveDateTime.diff用法及代码示例
- Elixir NaiveDateTime.to_iso8601用法及代码示例
- Elixir NaiveDateTime.local_now用法及代码示例
- Elixir NaiveDateTime.compare用法及代码示例
- Elixir NaiveDateTime.to_string用法及代码示例
- Elixir NaiveDateTime.new用法及代码示例
- Elixir NaiveDateTime.convert用法及代码示例
- Elixir NaiveDateTime.to_time用法及代码示例
- Elixir NaiveDateTime.from_iso8601!用法及代码示例
- Elixir NaiveDateTime.to_date用法及代码示例
- Elixir NaiveDateTime.to_gregorian_seconds用法及代码示例
- Elixir NaiveDateTime.add用法及代码示例
- Elixir StringIO.flush用法及代码示例
- Elixir Calendar.ISO.date_to_string用法及代码示例
注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Node.start(name, type \\ :longnames, tick_time \\ 15000)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。