本文整理汇总了Python中timer.Timer.run_later方法的典型用法代码示例。如果您正苦于以下问题:Python Timer.run_later方法的具体用法?Python Timer.run_later怎么用?Python Timer.run_later使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类timer.Timer
的用法示例。
在下文中一共展示了Timer.run_later方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from timer import Timer [as 别名]
# 或者: from timer.Timer import run_later [as 别名]
def main():
interval = 5
if len(sys.argv) > 1:
script_path = sys.argv[1]
sys.argv = sys.argv[1:]
else:
print >> sys.stderr, "usage: python -m tripod.sampler ./script_path.py"
print >> sys.stderr, "(Default interval: %f seconds. Override with TRIPOD_INTERVAL env var)" % interval
sys.exit(1)
interval = float(os.environ.get("TRIPOD_INTERVAL", interval))
timer = Timer()
timer.setDaemon(True)
timer.start()
# dump to file:
fd, fn = tempfile.mkstemp(prefix='slow_process_', suffix='.log', dir='/tmp')
print >> sys.stderr, "[Tripod] Sampling every %f seconds" % interval
print >> sys.stderr, "[Tripod] Writing output to:", fn
timer.run_later(peek, interval, fd, thread.get_ident(), dt.datetime.utcnow())
exit_code = 0
try:
with open(script_path) as f:
global __file__
__file__ = script_path
exec f.read() in globals(), globals()
except SystemExit, e:
exit_code = e.code