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


Python EDJob.connectSUCCESS方法代码示例

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


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

示例1: unitTestExecuteCallbackSuccess

# 需要导入模块: from EDJob import EDJob [as 别名]
# 或者: from EDJob.EDJob import connectSUCCESS [as 别名]
 def unitTestExecuteCallbackSuccess(self):
     """
     check the execution of a job (without callback)
     """
     EDVerbose.DEBUG("EDTestCaseEDJob.unitTestExecuteCallbackSuccess")
     edJob = EDJob(self.strPluginName)
     edJob.connectSUCCESS(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: process

# 需要导入模块: from EDJob import EDJob [as 别名]
# 或者: from EDJob.EDJob import connectSUCCESS [as 别名]
 def process(self):
     for fn in self.dataFiles:
         EDVerbose.screen("Processing file %s" % fn)
         edj = EDJob(self.EDNAPluginName)
         edj.dataInput = self.fileName2xml(fn)
         edj.connectSUCCESS(self.XMLsuccess)
         edj.connectFAILURE(self.XMLerr)
         self.queue.put(edj)
         if self.process_sem._Semaphore__value > 0 :
             t = threading.Thread(target=self.startProcessing)
             t.start()
     EDVerbose.screen("Back in main")
     while self.cpu_sem._Semaphore__value < self.nbcpu:
         time.sleep(0.1)
     EDJob.synchronizeAll()
     EDJob.stats()
开发者ID:kif,项目名称:edna,代码行数:18,代码来源:AzimuthalIntegration.py

示例3: start

# 需要导入模块: from EDJob import EDJob [as 别名]
# 或者: from EDJob.EDJob import connectSUCCESS [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.connectSUCCESS方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。