diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-20 11:59:28 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-20 11:59:28 +0000 |
commit | 5132fc85bb654d7ef5429e90e1dd56b09852589d (patch) | |
tree | 5969c6022ae5fb0788f332f94d9c748ab31e070e /lib/custodian | |
parent | 4be29eb482be5c9b83cca9a110901f454fcf16a5 (diff) |
Removed
Diffstat (limited to 'lib/custodian')
-rw-r--r-- | lib/custodian/queue.rb | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/lib/custodian/queue.rb b/lib/custodian/queue.rb deleted file mode 100644 index 1e0004f..0000000 --- a/lib/custodian/queue.rb +++ /dev/null @@ -1,34 +0,0 @@ - - -# -# Interface for our queue. -# -# We'll use this rather than the beanstalk-client -# -class Queue - - # - # Constructor - # - def initialize( server ) - end - - # - # Put an object. - # - # The object is serialized via JSON - # - def put( object ) - end - - # - # Retrieve a native object from the Queue. - # - # The object is deserialized using JSON. - # - # This method will not return until there is an object present. - # - def fetch - end - -end |