ilog.rules.engine
Interface IlrUpdateDemon
-
public interface IlrUpdateDemonIf the class of a modified object in a context implements this interface, then the method that this interface defines is called. Because this method is invoked every time the object is modified, it is called an update daemon. The update daemon is called by both the
modifyandupdatestatements of the ILOG Rule Language.
-
-
Method Summary
Methods Modifier and Type Method and Description voidupdated(IlrContext context)Implements the update daemon.
-
-
-
Method Detail
-
updated
void updated(IlrContext context)
Implements the update daemon.
- Parameters:
context- The execution context where the modification is performed. If the context has been derived, the context parameter can be safely cast to the derived class.
-
-