本文整理汇总了Python中threading.Thread.need_stop方法的典型用法代码示例。如果您正苦于以下问题:Python Thread.need_stop方法的具体用法?Python Thread.need_stop怎么用?Python Thread.need_stop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类threading.Thread
的用法示例。
在下文中一共展示了Thread.need_stop方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Thread
# 需要导入模块: from threading import Thread [as 别名]
# 或者: from threading.Thread import need_stop [as 别名]
# st = Thread(name=thread_name, target=func_with_check_stop, args=(10, res, check_stop))
# st.start()
# sleep(1)
# stop_flag[thread_name] = True
# st.join()
# res.p()
# "ok".p()
with test(func_with_check_stop2):
res = [""]
stop_flag = {}
thread_name = "thread1"
st = Thread(name=thread_name, target=func_with_check_stop2, args=(10, res))
# st.need_stop = False
st.start()
sleep(1)
st.need_stop = True
st.join()
res.p()
"ok".p()
# with test():
# def foo(bar, baz):
# print('hello {0}'.format(bar))
# return 'foo' + baz
# from multiprocessing.pool import ThreadPool
# pool = ThreadPool(processes=1)
# async_result = pool.apply_async(foo, ('world', 'foo'))