本文整理汇总了Python中task.Task.port方法的典型用法代码示例。如果您正苦于以下问题:Python Task.port方法的具体用法?Python Task.port怎么用?Python Task.port使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类task.Task
的用法示例。
在下文中一共展示了Task.port方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: add_task_message
# 需要导入模块: from task import Task [as 别名]
# 或者: from task.Task import port [as 别名]
def add_task_message(self,task):
global lock
print("master dispatch one task to worker")
print(task)
crawler_task = Task(task)
uuid = crawler_task.get_uuid()
lock.acquire()
if not self.run_tasks.has_key(uuid):
crawler_task.port = self.ports.pop()
self.tasks[uuid] = crawler_task
lock.release()
else:
lock.release()
status = crawler_task.get_status()
cfg_name = crawler_task.get_cfg_name("cfg_name")
if status == TaskStatus.DISPATCH:
crawler_task.port = self.ports.pop()
elif status == TaskStatus.SUSPEND:
#print "pause here :%s %s" % (cfg_name, port)
socket_send("pause:%s" %cfg_name, crawler_task.get_port())
elif status == TaskStatus.RUN:
socket_send("resume:%s" %cfg_name, crawler_task.get_port())