summaryrefslogtreecommitdiff
path: root/src/worker_pool.erl
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-08-13 04:26:45 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2010-08-13 04:26:45 +0100
commit47f5b3df329ca7b75e0e090e9bd09338fe716b4d (patch)
tree20bd1e0f4f49a4131b1b9c5c3bc453481eeec562 /src/worker_pool.erl
parent1f982ed96126acf6654bd9db7bed34f21556eaf4 (diff)
downloadrabbitmq-server-47f5b3df329ca7b75e0e090e9bd09338fe716b4d.tar.gz
use consistent return types for start/start_link functionsbug23120
Diffstat (limited to 'src/worker_pool.erl')
-rw-r--r--src/worker_pool.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/worker_pool.erl b/src/worker_pool.erl
index 01ce3535..595884e0 100644
--- a/src/worker_pool.erl
+++ b/src/worker_pool.erl
@@ -52,7 +52,7 @@
-ifdef(use_specs).
--spec(start_link/0 :: () -> 'ignore' | rabbit_types:ok_or_error2(pid(), any())).
+-spec(start_link/0 :: () -> {'ok', pid()} | {'error', any()}).
-spec(submit/1 :: (fun (() -> A) | {atom(), atom(), [any()]}) -> A).
-spec(submit_async/1 ::
(fun (() -> any()) | {atom(), atom(), [any()]}) -> 'ok').