class %SYS.Task.BackupSuper
Super class for backup tasks.
property Device
as %String(MAXLEN=1024) [ InitialExpression = ##class(%File).NormalizeDirectory("Backup") ];
property SaveToTape
as %Boolean [ InitialExpression = "0" ];
property TapeDevice
as %String [ InitialExpression = "47" ];
Back up tape device if it is save to tape
method OnTask()
as %Status
This method is responsible for executing the task.
At the scheduled time, the Task Manager creates an instance of this object,
sets any property values using the stored "settings" for the task, and then
invokes this method to execute the task.
In order to execute a real task, override this method in a subclass.