當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。