本文整理汇总了Python中pyon.ion.process.IonProcessThread._notify_stop方法的典型用法代码示例。如果您正苦于以下问题:Python IonProcessThread._notify_stop方法的具体用法?Python IonProcessThread._notify_stop怎么用?Python IonProcessThread._notify_stop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyon.ion.process.IonProcessThread
的用法示例。
在下文中一共展示了IonProcessThread._notify_stop方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_spawn_proc_with_no_listeners
# 需要导入模块: from pyon.ion.process import IonProcessThread [as 别名]
# 或者: from pyon.ion.process.IonProcessThread import _notify_stop [as 别名]
def test_spawn_proc_with_no_listeners(self):
p = IonProcessThread(name=sentinel.name, listeners=[])
p.start()
p.get_ready_event().wait(timeout=5)
self.assertEquals(len(p.thread_manager.children), 1)
p._notify_stop()
self.assertTrue(p.thread_manager.children[0].proc.dead)
p.stop()
示例2: test__routing_call
# 需要导入模块: from pyon.ion.process import IonProcessThread [as 别名]
# 或者: from pyon.ion.process.IonProcessThread import _notify_stop [as 别名]
def test__routing_call(self):
svc = self._make_service()
p = IonProcessThread(name=sentinel.name, listeners=[], service=svc)
p.start()
p.get_ready_event().wait(timeout=5)
ar = AsyncResult()
p._routing_call(ar.set, None, value=sentinel.callarg)
v = ar.get(timeout=5)
self.assertEquals(v, sentinel.callarg)
p._notify_stop()
p.stop()
示例3: test__routing_call
# 需要导入模块: from pyon.ion.process import IonProcessThread [as 别名]
# 或者: from pyon.ion.process.IonProcessThread import _notify_stop [as 别名]
def test__routing_call(self):
svc = LocalContextMixin()
p = IonProcessThread(name=sentinel.name, listeners=[], service=svc)
p.start()
p.get_ready_event().wait(timeout=5)
ar = AsyncResult()
p._routing_call(ar.set, {'value':sentinel.callarg})
v = ar.get(timeout=5)
self.assertEquals(v, sentinel.callarg)
p._notify_stop()
p.stop()
示例4: test_spawn_proc_with_one_listener
# 需要导入模块: from pyon.ion.process import IonProcessThread [as 别名]
# 或者: from pyon.ion.process.IonProcessThread import _notify_stop [as 别名]
def test_spawn_proc_with_one_listener(self):
mocklistener = Mock(spec=ProcessRPCServer)
p = IonProcessThread(name=sentinel.name, listeners=[mocklistener])
readyev = Event()
readyev.set()
mocklistener.get_ready_event.return_value = readyev
p.start()
p.get_ready_event().wait(timeout=5)
self.assertEquals(len(p.thread_manager.children), 2)
mocklistener.listen.assert_called_once_with()
self.assertEqual(mocklistener.routing_call, p._routing_call)
p._notify_stop()
mocklistener.close.assert_called_once_with()
p.stop()
示例5: test_competing__routing_call
# 需要导入模块: from pyon.ion.process import IonProcessThread [as 别名]
# 或者: from pyon.ion.process.IonProcessThread import _notify_stop [as 别名]
def test_competing__routing_call(self):
svc = self._make_service()
p = IonProcessThread(name=sentinel.name, listeners=[], service=svc)
p.start()
p.get_ready_event().wait(timeout=5)
sem = Semaphore()
# define a callable method that tries to grab a shared semaphore
def thecall(ar=None):
semres = sem.acquire(blocking=False)
if not semres:
raise StandardError("Could not get semaphore, routing_call/control flow is broken!")
# make this take a sec
time.sleep(1)
# make sure we release
sem.release()
# set the ar
ar.set(True)
# schedule some calls (in whatever order)
ar1 = AsyncResult()
ar2 = AsyncResult()
ar3 = AsyncResult()
p._routing_call(thecall, None, ar=ar3)
p._routing_call(thecall, None, ar=ar1)
p._routing_call(thecall, None, ar=ar2)
# wait on all the ARs to be set
ar1.get(timeout=5)
ar2.get(timeout=5)
ar3.get(timeout=5)
# just getting here without throwing an exception is the true test!
p._notify_stop()
p.stop()