示例#1
0
 def start(self):
     return Thread.start(self)
示例#2
0
 def __init__(self, *args, **kw):
     Thread.__init__(self)
     Arbiter.__init__(self, *args, **kw)
示例#3
0
文件: arbiter.py 项目: baiqj/circus
 def start(self):
     return Thread.start(self)
示例#4
0
文件: arbiter.py 项目: baiqj/circus
 def __init__(self, *args, **kw):
     Thread.__init__(self)
     Arbiter.__init__(self, *args, **kw)
示例#5
0
 def __init__(this, streamer):
     Thread.__init__(this)
     this.streamer = streamer
     this.loop = ioloop.IOLoop()
     this.daemon = True
示例#6
0
 def __init__(this, streamer):
     Thread.__init__(this)
     this.streamer = streamer
     this.loop = ioloop.IOLoop()
     this.daemon = True