diff options
| -rw-r--r-- | src/rabbit_boot.erl | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/rabbit_boot.erl b/src/rabbit_boot.erl index 018a389967..d09864422a 100644 --- a/src/rabbit_boot.erl +++ b/src/rabbit_boot.erl @@ -24,14 +24,15 @@ -ifdef(use_specs). --spec(boot_with/1 :: (fun(() -> 'ok')) -> 'ok'). --spec(shutdown/1 :: ([atom()]) -> 'ok'). --spec(start/1 :: ([atom()]) -> 'ok'). --spec(stop/1 :: ([atom()]) -> 'ok'). --spec(run_boot_steps/0 :: () -> 'ok'). --spec(boot_error/2 :: (term(), not_available | [tuple()]) -> no_return()). --spec(boot_error/4 :: (term(), string(), [any()], not_available | [tuple()]) - -> no_return()). +-spec(prepare_boot_table/0 :: () -> 'ok'). +-spec(boot_with/1 :: (fun(() -> 'ok')) -> 'ok'). +-spec(shutdown/1 :: ([atom()]) -> 'ok'). +-spec(start/1 :: ([atom()]) -> 'ok'). +-spec(stop/1 :: ([atom()]) -> 'ok'). +-spec(run_boot_steps/0 :: () -> 'ok'). +-spec(boot_error/2 :: (term(), not_available | [tuple()]) -> no_return()). +-spec(boot_error/4 :: (term(), string(), [any()], not_available | [tuple()]) + -> no_return()). -endif. |
