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


Python Timer.dameon方法代码示例

本文整理汇总了Python中threading.Timer.dameon方法的典型用法代码示例。如果您正苦于以下问题:Python Timer.dameon方法的具体用法?Python Timer.dameon怎么用?Python Timer.dameon使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在threading.Timer的用法示例。


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

示例1: Thread

# 需要导入模块: from threading import Timer [as 别名]
# 或者: from threading.Timer import dameon [as 别名]
        serve=Node(line.rstrip())
        serve.incominglist=[]
        con1080.append(copy.deepcopy(serve))
        con720.append(copy.deepcopy(serve))
        con480.append(copy.deepcopy(serve))
        con360.append(copy.deepcopy(serve))
        dead.append(copy.deepcopy(serve))
        line=f.readline()

	session=True
        while line!="":
                nodeList.append(Node(line.rstrip()))
                line=f.readline()
	for item in nodeList:
		debug=open("debug",'a')
		debug.write(item.IP+ " \n")
		debug.close()
	t=Timer(3605, ending)
	t.dameon = True
	t.start()
	for item in nodeList:
        	threads.insert(0,Thread(target=item.getBandwidth, args =()))
		threads[0].dameon=True
		threads[0].start()
	for item in nodeList:
		threads.insert(0, Thread(target=item.getPackets, args=()))
		threads[0].dameon=True
		threads[0].start()
        print "done"
        print "nope"
开发者ID:kmont12,项目名称:Summer-2014,代码行数:32,代码来源:Workstation.py


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