当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Elixir Application.ensure_started用法及代码示例


Elixir语言中 Application.ensure_started 相关用法介绍如下。

用法:

ensure_started(app, type \\ :temporary)
@spec ensure_started(app(), restart_type()) :: :ok | {:error, term()}

确保启动给定的app

start/2 相同,但如果应用程序已启动,则返回 :ok。这在需要显式启动测试应用程序的脚本和测试设置中很有用:

:ok = Application.ensure_started(:my_test_dep)

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Application.ensure_started(app, type \\ :temporary)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。