當前位置: 首頁>>代碼示例>>Python>>正文


Python Queue.get_all_by_priority方法代碼示例

本文整理匯總了Python中limpyd_jobs.models.Queue.get_all_by_priority方法的典型用法代碼示例。如果您正苦於以下問題:Python Queue.get_all_by_priority方法的具體用法?Python Queue.get_all_by_priority怎麽用?Python Queue.get_all_by_priority使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在limpyd_jobs.models.Queue的用法示例。


在下文中一共展示了Queue.get_all_by_priority方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_get_all_by_priority_should_return_all_queues_sorted

# 需要導入模塊: from limpyd_jobs.models import Queue [as 別名]
# 或者: from limpyd_jobs.models.Queue import get_all_by_priority [as 別名]
    def test_get_all_by_priority_should_return_all_queues_sorted(self):
        qa0 = Queue.get_queue(name='testa', priority=0)
        qa10 = Queue.get_queue(name='testa', priority=10)
        qa5 = Queue.get_queue(name='testa', priority=5)
        qb1 = Queue.get_queue(name='testb', priority=1)
        qb7 = Queue.get_queue(name='testb', priority=7)
        qb15 = Queue.get_queue(name='testb', priority=15)

        queuesa = [q.pk.get() for q in Queue.get_all_by_priority('testa')]
        self.assertEqual(queuesa, [qa10.pk.get(), qa5.pk.get(), qa0.pk.get()])
        queuesb = [q.pk.get() for q in Queue.get_all_by_priority('testb')]
        self.assertEqual(queuesb, [qb15.pk.get(), qb7.pk.get(), qb1.pk.get()])

        queues = [q.pk.get() for q in Queue.get_all_by_priority(['testa', 'testb'])]
        self.assertEqual(queues, [qb15.pk.get(), qa10.pk.get(), qb7.pk.get(),
                                      qa5.pk.get(), qb1.pk.get(), qa0.pk.get()])
開發者ID:limpyd,項目名稱:redis-limpyd-jobs,代碼行數:18,代碼來源:models.py


注:本文中的limpyd_jobs.models.Queue.get_all_by_priority方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。