码迷,mamicode.com
首页 > 其他好文 > 详细

twisted——scheduling tasks

时间:2014-08-18 01:25:33      阅读:436      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   数据   ar   art   div   

如果我们想在reactor开始后,能执行一些方法,可以使用reactor.callLater()方法和twisted.internet.task中的方法。

1、使用reactor.callLater()

calllater.py

1 from twisted.internet import reactor
2 
3 def fun(s):
4     print "3 seconds later %s" % s
5     reactor.stop()
6 
7 reactor.callLater(3, fun, "ha!")
8 reactor.run()

 

2、如果我们需要使用到方法返回的数据,那么就需要借用task.deferLater()方法,它将会生成Defered,并且建立延迟调用。

deferlater.py

 1 from twisted.internet import task, reactor
 2 
 3 def f(s):
 4     reactor.stop()
 5     return "3 seconds later %s " % s
 6     
 7 
 8 d=task.deferLater(reactor, 3, f, ha!)
 9 
10 def called(result):
11     print result
12     # reactor.stop()
13 
14 d.addCallback(called)
15 
16 reactor.run()

 

3、如果我们想重复的调用某一个方法,可以使用task.LoopingCall()方法。

1 def runEverySecond():
2     print "a second has passed"
3 
4 l=task.LoopingCall(runEverySecond)
5 l.start(1.0)
6 
7 reactor.run()

 

如果我们需要取消任务。

1 def f():
2     print "I would‘t run .. "
3 
4 callID=reactor.callLater(5, f)
5 callID.cancel()
6 reactor.run()

 

需要注意的是,我们要想那些任务能够执行,则必须通过reactor.run()来开始。

twisted——scheduling tasks,布布扣,bubuko.com

twisted——scheduling tasks

标签:style   blog   color   使用   数据   ar   art   div   

原文地址:http://www.cnblogs.com/lazyzhong/p/3918592.html

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