To use something in the task scheduler, you have to create a class that extends %SYS.Task.Definition. Within that class you have to define:
Method OnTask() As %Status{
//The stuff you want to happen when the task is scheduled goes here.
//In your case, that probably means calling your task method.
}If that method is not defined, you get the "Not Implemented" error. If you've created such a class, make sure the method had the right name, isn't a classmethod, is As %Status, and does return a %Status. Also make sure the class is compiling correctly.
- Log in to post comments