1: <?php
2: // TEST THIS AGAINST LOCAL https://github.com/iriscouch/cqs
3: /**
4: * Stores queue tasks in Amazon's SQS.
5: */
6: class Horde_Queue_Storage_Sqs extends Horde_Queue_Storage_Base
7: {
8: public function add($task)
9: {
10: }
11:
12: public function getMany($num = 50)
13: {
14: }
15: }
16: