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


Python EDJob.connectCallBack方法代码示例

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


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

示例1: unitTestExecuteCallback

# 需要导入模块: from EDJob import EDJob [as 别名]
# 或者: from EDJob.EDJob import connectCallBack [as 别名]
 def unitTestExecuteCallback(self):
     """
     check the execution of a job (without callback)
     """
     EDVerbose.DEBUG("EDTestCaseEDJob.unitTestExecuteCallback")
     edJob = EDJob(self.strPluginName)
     edJob.connectCallBack(self.callBack)
     edJob.setDataInput(self.strXmlInput)
     strJobId = edJob.execute()
     strStatus = edJob.getStatus()
     EDVerbose.DEBUG("Job %s in State ''%s''" % (strJobId, strStatus))
开发者ID:antolinos,项目名称:edna,代码行数:13,代码来源:EDTestCaseEDJob.py

示例2: start

# 需要导入模块: from EDJob import EDJob [as 别名]
# 或者: from EDJob.EDJob import connectCallBack [as 别名]
 def start(self, _strXmlInput):
     """
     Launch EDNA with the given XML stream
     @param _strXmlInput:  XML to be passed to the plugin
     @type  _strXmlInput: python string representing the XML data structure
     """
     jobid = None
     if _strXmlInput not in ["", None]:
         job = EDJob(self.__strPluginName)
         job.setDataInput(_strXmlInput)
         job.connectFAILURE(self.failureJobExecution)
         job.connectSUCCESS(self.successJobExecution)
         job.connectCallBack(self.unregisterJob)
         self.semaphoreNbThreadsAcquire()
         jobid = job.execute()
         self.DEBUG("Running Job id %s" % jobid)
         if jobid is None:
             self.semaphoreNbThreadsRelease()
     return jobid
开发者ID:jordiandreu,项目名称:edna-mx,代码行数:21,代码来源:EDParallelExecute.py


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