本文整理汇总了Python中tomato.devices.Device.getDestroyTasks方法的典型用法代码示例。如果您正苦于以下问题:Python Device.getDestroyTasks方法的具体用法?Python Device.getDestroyTasks怎么用?Python Device.getDestroyTasks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tomato.devices.Device
的用法示例。
在下文中一共展示了Device.getDestroyTasks方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getDestroyTasks
# 需要导入模块: from tomato.devices import Device [as 别名]
# 或者: from tomato.devices.Device import getDestroyTasks [as 别名]
def getDestroyTasks(self):
taskset = Device.getDestroyTasks(self)
destroy_vm = tasks.Task("destroy-vm", self._destroyVm, reverseFn=self._fallbackDestroy)
unassign_vmid = tasks.Task("unassign-vmid", self._unassignVmid, after=destroy_vm, reverseFn=self._fallbackDestroy)
unassign_host = tasks.Task("unassign-host", self._unassignHost, after=unassign_vmid, reverseFn=self._fallbackDestroy)
taskset.add([destroy_vm, unassign_host, unassign_vmid])
return self._adaptTaskset(taskset)
示例2: getDestroyTasks
# 需要导入模块: from tomato.devices import Device [as 别名]
# 或者: from tomato.devices.Device import getDestroyTasks [as 别名]
def getDestroyTasks(self):
taskset = Device.getDestroyTasks(self)
taskset.add(tasks.Task("destroy", self._destroyDev))
return taskset