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


Python Thread.need_stop方法代码示例

本文整理汇总了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'))        
开发者ID:jichen3000,项目名称:codes,代码行数:32,代码来源:stoppable_thread.py


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