Post event processing
Post processing for a node after an event process cycle
Introduction
Example
The node classes:
public class ResetAfterEvent {
private final Object parent;
@AfterEvent
public void afterEvent(){}
}
public class ResetDataEvent {
private final DataEventHandler handler;
@OnEvent
public void eventUpdate() {}
@OnEventComplete
public void dataEventReset(){}
}
public class ResetGlobal {
private final ResetDataEvent global;
@EventHandler
public void conifgUpdate(ConfigEvent cfgEvent){}
@OnEvent
public void eventUpdate() {}
@AfterEvent
public void afterEvent(){}
@OnEventComplete
public void eventComplete(){}
}
Generated SEP
Generated png

Last updated
Was this helpful?