本文整理汇总了Python中mininet.node.OVSSwitch.batchStartup方法的典型用法代码示例。如果您正苦于以下问题:Python OVSSwitch.batchStartup方法的具体用法?Python OVSSwitch.batchStartup怎么用?Python OVSSwitch.batchStartup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mininet.node.OVSSwitch
的用法示例。
在下文中一共展示了OVSSwitch.batchStartup方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: batchStartup
# 需要导入模块: from mininet.node import OVSSwitch [as 别名]
# 或者: from mininet.node.OVSSwitch import batchStartup [as 别名]
def batchStartup( cls, switches, **_kwargs ):
"Start up switches in per-server batches"
key = attrgetter( 'server' )
for server, switchGroup in groupby( sorted( switches, key=key ), key ):
info( '(%s)' % server )
group = tuple( switchGroup )
switch = group[ 0 ]
OVSSwitch.batchStartup( group, run=switch.cmd )
return switches
示例2: batchStartup
# 需要导入模块: from mininet.node import OVSSwitch [as 别名]
# 或者: from mininet.node.OVSSwitch import batchStartup [as 别名]
def batchStartup( cls, switches ):
result = []
for ovsdb, switchGroup in groupby( switches, attrgetter( 'ovsdb') ):
switchGroup = list( switchGroup )
info( '(%s)' % ovsdb )
result += OVSSwitch.batchStartup( switchGroup, run=ovsdb.cmd )
return result
示例3: batchStartup
# 需要导入模块: from mininet.node import OVSSwitch [as 别名]
# 或者: from mininet.node.OVSSwitch import batchStartup [as 别名]
def batchStartup(cls, switches, *_parm, **_parms):
rv = OVSSwitch.batchStartup(switches, *_parm, **_parms)
for s in switches:
s.poststart()
return rv