moddbregisterqueue.class.php 600 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * This file is part of MODX Revolution.
  4. *
  5. * Copyright (c) MODX, LLC. All Rights Reserved.
  6. *
  7. * For complete copyright and license information, see the COPYRIGHT and LICENSE
  8. * files found in the top-level directory of this distribution.
  9. */
  10. /**
  11. * Represents a database-based registry queue.
  12. *
  13. * @property string $name The key name of the queue
  14. * @property array $options An array of configuration options for the queue
  15. *
  16. * @see modDbRegisterTopic
  17. * @see modDbRegisterMessage
  18. *
  19. * @package modx
  20. * @subpackage registry.db
  21. */
  22. class modDbRegisterQueue extends xPDOSimpleObject {}