本文整理汇总了Python中volttron.platform.agent.utils.default_main函数的典型用法代码示例。如果您正苦于以下问题:Python default_main函数的具体用法?Python default_main怎么用?Python default_main使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default_main函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
def main(argv=sys.argv):
'''
Main method called by the eggsecutable.
'''
utils.default_main(DrivenAgent,
description='Example VOLTTRON platform™ driven agent',
argv=argv)
示例2: main
def main(argv=sys.argv):
try:
utils.default_main(ZMQ_Subscribe,
description='ZMQ UI Subscribe',
argv=argv)
except Exception as e:
_log.exception('unhandled exception', e)
示例3: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.default_main(PingPongAgent,
description='Example VOLTTRON™ mobility agent',
argv=argv)
except Exception as e:
_log.exception('unhandled exception')
示例4: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.default_main(GreeterAgent,
description='Simple multi-node demo agent',
argv=argv)
except Exception as e:
_log.exception('unhandled exception')
示例5: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.default_main(PushAgent,
description='SMDS Result Pushing agent',
argv=argv)
except Exception as e:
_log.exception('unhandled exception')
示例6: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.default_main(ListenerAgent,
description='Example VOLTTRON platform™ heartbeat agent',
argv=argv)
except Exception as e:
_log.exception('unhandled exception')
示例7: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.default_main(AppLauncherAgent,
description='this is an AppLauncher agent',
argv=argv)
except Exception as e:
_log.exception('unhandled exception')
示例8: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.default_main(ScheduleExampleAgent,
description='Example agent using the Scheduler',
argv=argv)
except Exception as e:
print e
_log.exception('unhandled exception')
示例9: main
def main(argv=sys.argv):
'''Main method called to start the agent.'''
utils.setup_logging()
try:
utils.default_main(UIAgent,
description='VOLTTRON platform™ agent for remote user interaction.',
argv=argv)
except Exception:
_log.exception('unhandled exception')
示例10: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
# Parse options
# parser = ArgumentParser(prog=os.path.basename(argv[0]), description='Example VOLTTRON platform agent')
# opts = parser.parse_args(argv[1:])
# agent = DataPublisher(subscribe_address=opts.sub,
# publish_address=opts.pub, config_path=opts.config)
# agent.run()
utils.default_main(DataPub,
description='DD',
argv=argv)
示例11: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
utils.default_main(scheduleragent,
description='Lighting Scheduler Agent',
argv=argv)
示例12: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
utils.default_main(RTUAgent,
description='VAV agent',
argv=argv)
示例13: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
utils.default_main(DeviceDiscoveryAgent, description='Device Discovery agent', argv=argv)
示例14: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
utils.default_main(DemandResponseAgent,
description = 'VOLTTRON platform grid response agent',
argv=argv)
示例15: main
def main(argv=sys.argv):
"""Main method called by the eggsecutable."""
utils.default_main(ActuatorAgent, description="Example VOLTTRON platform™ actuator agent", argv=argv)