当前位置: 首页>>代码示例>>Python>>正文


Python rdq.ResizableDispatchQueue类代码示例

本文整理汇总了Python中txrdq.rdq.ResizableDispatchQueue的典型用法代码示例。如果您正苦于以下问题:Python ResizableDispatchQueue类的具体用法?Python ResizableDispatchQueue怎么用?Python ResizableDispatchQueue使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了ResizableDispatchQueue类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: testStopAndCancelWithOneUnderway

    def testStopAndCancelWithOneUnderway(self):
        """
        Start a dispatch queue of width 2, and send it 3 jobs. Verify that
        2 of the jobs are underway. Then stop it before they can complete,
        telling it to cancel the underway jobs. The two jobs that were
        underway should both be cancelled and returned by the stop method.
        The first 2 jobs returned should have state CANCELLED, and the
        final one should still be PENDING.
        """
        def ok(result):
            self.fail('Unexpected success!')

        def checkCancel(failure):
            self.assertEqual(failure.value.state, Job.CANCELLED)

        dq = ResizableDispatchQueue(self.slow, 2)
        dq.put(0).addCallbacks(ok, checkCancel)
        dq.put(1).addCallbacks(ok, checkCancel)
        dq.put(2)
        reactor.callLater(0.01, self._testUnderway, dq, set([0, 1]))
        pendingJobs = yield task.deferLater(
            reactor, 0.1, dq.stop, cancelUnderway=True)
        pendingArgs = [p.jobarg for p in pendingJobs]
        self.assertEqual([0, 1, 2], sorted(pendingArgs))
        self.assertEqual(pendingJobs[0].state, Job.CANCELLED)
        self.assertEqual(pendingJobs[1].state, Job.CANCELLED)
        self.assertEqual(pendingJobs[2].state, Job.PENDING)
开发者ID:jcollie,项目名称:txrdq,代码行数:27,代码来源:test_rdq.py

示例2: testZeroOnExplicitCreation

 def testZeroOnExplicitCreation(self):
     """
     A new queue whose width is 10 should have no pending stops.
     """
     dq = ResizableDispatchQueue(None, 10)
     self.assertEqual(0, dq.pendingStops)
     return dq.stop()
开发者ID:jcollie,项目名称:txrdq,代码行数:7,代码来源:test_rdq.py

示例3: testPauseResumeWithNonZeroWidth

 def testPauseResumeWithNonZeroWidth(self):
     """
     Check that it is possible to resume with a non-zero width.
     """
     dq = ResizableDispatchQueue(None, 1)
     yield dq.pause()
     dq.resume(10)
     self.assertEqual(dq.width, 10)
开发者ID:jcollie,项目名称:txrdq,代码行数:8,代码来源:test_rdq.py

示例4: testZeroOnDefaultCreation

 def testZeroOnDefaultCreation(self):
     """
     A new queue whose width is unspecified should have no pending
     stops.
     """
     dq = ResizableDispatchQueue(None)
     self.assertEqual(0, dq.pendingStops)
     return dq.stop()
开发者ID:jcollie,项目名称:txrdq,代码行数:8,代码来源:test_rdq.py

示例5: testReprioritizeNonPendingJob

 def testReprioritizeNonPendingJob(self):
     """
     Reprioritizing a job that is not pending must raise
     C{RuntimeError}.
     """
     dq = ResizableDispatchQueue(lambda x: x, 1)
     job = yield dq.put('a')
     self.assertRaises(RuntimeError, dq.reprioritize, job, 10)
开发者ID:jcollie,项目名称:txrdq,代码行数:8,代码来源:test_rdq.py

示例6: testJustOneWithZeroInitialWidth

 def testJustOneWithZeroInitialWidth(self):
     # Same as testJustOne (above), except we initialize with zero width
     # and start the dispatcher by explicitly setting its width.
     dq = ResizableDispatchQueue(self.slow)
     map(dq.put, range(3))
     self.assertEqual(0, dq.width)
     dq.width = 1
     return self._stopAndTest(0.0001, dq, [1, 2])
开发者ID:jcollie,项目名称:txrdq,代码行数:8,代码来源:test_rdq.py

示例7: testSimplePending

 def testSimplePending(self):
     """
     Putting 3 jobs onto a queue with zero width should result in a
     number of pending jobs of 3.
     """
     dq = ResizableDispatchQueue(None)
     map(dq.put, range(3))
     self.assertEqual((0, 3), dq.size())
开发者ID:jcollie,项目名称:txrdq,代码行数:8,代码来源:test_rdq.py

示例8: testPause

 def testPause(self):
     items = range(3)
     dq = ResizableDispatchQueue(self.slow, 1)
     map(dq.put, items)
     reactor.callLater(0.2, self._testPaused, dq)
     yield task.deferLater(reactor, 0.1, dq.pause)
     pendingJobs = dq.pending()
     self.assertEqual([p.jobarg for p in pendingJobs], [1, 2])
开发者ID:jcollie,项目名称:txrdq,代码行数:8,代码来源:test_rdq.py

示例9: testPutRaisesWhenStopped

 def testPutRaisesWhenStopped(self):
     """
     Putting something onto a stopped queue should raise
     C{QueueStopped}.
     """
     dq = ResizableDispatchQueue(None)
     yield dq.stop()
     self.assertRaises(QueueStopped, dq.put, None)
开发者ID:jcollie,项目名称:txrdq,代码行数:8,代码来源:test_rdq.py

示例10: testDeferredFromPutFiresWithCorrectResult

 def testDeferredFromPutFiresWithCorrectResult(self):
     """
     Make sure the C{Deferred} we get back from a put to the queue fires
     with the expected result.
     """
     dq = ResizableDispatchQueue(lambda x: 2 * x, width=1)
     job = yield dq.put(6)
     self.assertEqual(job.result, 12)
开发者ID:jcollie,项目名称:txrdq,代码行数:8,代码来源:test_rdq.py

示例11: testIncrementToVeryHighValue

 def testIncrementToVeryHighValue(self):
     """
     Create a queue of width 10 and then set its width to 1000.
     The number of pending stops will be 0.
     """
     dq = ResizableDispatchQueue(None, 10)
     dq.width = 1000
     self.assertEqual(dq.pendingStops, 0)
     return dq.stop()
开发者ID:jcollie,项目名称:txrdq,代码行数:9,代码来源:test_rdq.py

示例12: testNarrow

 def testNarrow(self):
     """
     Create a queue of width 5 and narrow it to width 3. There should
     then be 2 pending stops.
     """
     dq = ResizableDispatchQueue(None, 5)
     dq.width = 3
     self.assertEqual(2, dq.pendingStops)
     return dq.stop()
开发者ID:jcollie,项目名称:txrdq,代码行数:9,代码来源:test_rdq.py

示例13: testSetImmediatelyToZero

 def testSetImmediatelyToZero(self):
     """
     Create a queue of width 10 and then set its width to 0.
     The number of pending stops will be 10.
     """
     dq = ResizableDispatchQueue(None, 10)
     dq.width = 0
     self.assertEqual(dq.pendingStops, 10)
     return dq.stop()
开发者ID:jcollie,项目名称:txrdq,代码行数:9,代码来源:test_rdq.py

示例14: testPuttingMoreThanWidthOnlyDispatchesWidth

 def testPuttingMoreThanWidthOnlyDispatchesWidth(self):
     """
     Make sure that if we put 5 things onto a queue whose width is 3
     that shortly thereafter there are 3 jobs underway and 2 pending.
     """
     dq = ResizableDispatchQueue(self.slow, 3)
     for value in range(5):
         reactor.callLater(0.01, dq.put, value)
     yield task.deferLater(reactor, 0.1, self._testSize, dq, (3, 2))
     remaining = yield dq.stop()
开发者ID:jcollie,项目名称:txrdq,代码行数:10,代码来源:test_rdq.py

示例15: testRaiseFailsWithJob

    def testRaiseFailsWithJob(self):
        """
        Raising an exception in the job handler should result in a failure
        that contains a L{txrdq.job.Job} value.
        """
        def raiseException(jobarg):
            raise Exception()

        dq = ResizableDispatchQueue(raiseException, 1)
        d = dq.put('Some argument', 1)
        return self.assertFailure(d, Job)
开发者ID:mwilliams3,项目名称:txrdq,代码行数:11,代码来源:test_rdq.py


注:本文中的txrdq.rdq.ResizableDispatchQueue类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。