Package org.kie.internal.event.rule
Interface RuleEventListener
-
- All Superinterfaces:
EventListener
public interface RuleEventListener extends EventListener
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidonAfterMatchFire(org.kie.api.runtime.rule.Match match)default voidonBeforeMatchFire(org.kie.api.runtime.rule.Match match)default voidonDeleteMatch(org.kie.api.runtime.rule.Match match)default voidonUpdateMatch(org.kie.api.runtime.rule.Match match)
-
-
-
Method Detail
-
onBeforeMatchFire
default void onBeforeMatchFire(org.kie.api.runtime.rule.Match match)
-
onAfterMatchFire
default void onAfterMatchFire(org.kie.api.runtime.rule.Match match)
-
onDeleteMatch
default void onDeleteMatch(org.kie.api.runtime.rule.Match match)
-
onUpdateMatch
default void onUpdateMatch(org.kie.api.runtime.rule.Match match)
-
-