diff options
author | Alexandru Scvortov <alexandru@rabbitmq.com> | 2010-07-06 13:16:38 +0100 |
---|---|---|
committer | Alexandru Scvortov <alexandru@rabbitmq.com> | 2010-07-06 13:16:38 +0100 |
commit | 59765b71999e62a394f45d5b4b0ad5cb53812b64 (patch) | |
tree | 88f4edfd2b5918f61930aa13a4459b7c665d5e3c /src/worker_pool.erl | |
parent | d0a64ac6a7d82c4512e0926a54cdc41c8dfe4e71 (diff) | |
download | rabbitmq-server-59765b71999e62a394f45d5b4b0ad5cb53812b64.tar.gz |
cleanup
Diffstat (limited to 'src/worker_pool.erl')
-rw-r--r-- | src/worker_pool.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/worker_pool.erl b/src/worker_pool.erl index a1e94fa8..3105d5f9 100644 --- a/src/worker_pool.erl +++ b/src/worker_pool.erl @@ -52,7 +52,8 @@ -ifdef(use_specs). --spec(start_link/0 :: () -> rabbit_types:ok(pid()) | 'ignore' | rabbit_types:error(any())). +-spec(start_link/0 :: + () -> rabbit_types:ok(pid()) | 'ignore' | rabbit_types:error(any())). -spec(submit/1 :: (fun (() -> A) | {atom(), atom(), [any()]}) -> A). -spec(submit_async/1 :: (fun (() -> any()) | {atom(), atom(), [any()]}) -> 'ok'). |