diff options
author | Matthew Sackman <matthew@rabbitmq.com> | 2011-05-18 13:30:32 +0100 |
---|---|---|
committer | Matthew Sackman <matthew@rabbitmq.com> | 2011-05-18 13:30:32 +0100 |
commit | 56ffe638d84646c2808b2b7a3bda0bae6a5ed933 (patch) | |
tree | f4ce93cb2dc0a564c0afba0005af9c28e69c05c9 /include/rabbit_backing_queue_spec.hrl | |
parent | 809585e9e7d1f5640e96622d618b1f7bb5b3d1dd (diff) | |
download | rabbitmq-server-56ffe638d84646c2808b2b7a3bda0bae6a5ed933.tar.gz |
BQ:needs_idle_timeout :: State -> Bool ==> BQ:needs_timeout :: State -> (false | idle | timed); which better reflects the different needs
Diffstat (limited to 'include/rabbit_backing_queue_spec.hrl')
-rw-r--r-- | include/rabbit_backing_queue_spec.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit_backing_queue_spec.hrl b/include/rabbit_backing_queue_spec.hrl index d9296bf6..f43baf0d 100644 --- a/include/rabbit_backing_queue_spec.hrl +++ b/include/rabbit_backing_queue_spec.hrl @@ -66,7 +66,7 @@ -spec(set_ram_duration_target/2 :: (('undefined' | 'infinity' | number()), state()) -> state()). -spec(ram_duration/1 :: (state()) -> {number(), state()}). --spec(needs_idle_timeout/1 :: (state()) -> boolean()). +-spec(needs_timeout/1 :: (state()) -> 'false' | 'timed' | 'idle'). -spec(idle_timeout/1 :: (state()) -> state()). -spec(handle_pre_hibernate/1 :: (state()) -> state()). -spec(status/1 :: (state()) -> [{atom(), any()}]). |