GetActiveBackupsForVM returns a list of active backups for a specific VM.
(vmid int)
| 776 | |
| 777 | // GetActiveBackupsForVM returns a list of active backups for a specific VM. |
| 778 | func (a *App) GetActiveBackupsForVM(vmid int) []*taskpoller.TaskInfo { |
| 779 | return a.poller.GetActiveTasksForVM(vmid) |
| 780 | } |
| 781 | |
| 782 | // RegisterBackupCallback registers a callback for backup state changes. |
| 783 | // Returns a function to unregister the callback. |
no test coverage detected