码迷,mamicode.com
首页 > 编程语言 > 详细

多线程事件

时间:2018-12-16 16:35:18      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:rand   spl   事件   code   技术分享   bre   close   and   class   

技术分享图片
import time
import random
from threading import Thread,Event
def conn_db(e):
    count = 0
    while count < 3:
        e.wait(1)
        if e.is_set():
            print("连接数据库成功")
            break
        else:
            count += 1
            print("第{}次连接数据库失败".format(count))
    else:
        raise TimeoutError("数据库连接超时")
def check_web(e):
    time.sleep(random.randint(1,3))
    e.set()
e = Event()
t1 = Thread(target=conn_db,args=(e,))
t2 = Thread(target=check_web,args=(e,))
t2.start()
t1.start()
模拟连接数据库

 

多线程事件

标签:rand   spl   事件   code   技术分享   bre   close   and   class   

原文地址:https://www.cnblogs.com/superniao/p/10126871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!