- EventProcessor: negative time is detected even in an alternative
addEvent
method
- AIC maven repo is now accessed from https
- logs changed to logback
- immediate events: Events with zero delay are now executed immediately. The only changed method is:
public void addEvent(Enum type, EventHandler recipient, String owner, Object content)
inEventProcessor
. The signature of the method is the same, but the behaviour changed, the event is now executed immediately. This can result in the different order of events! To stick with the old behavior (adding event to the event queue with 1ms delay) you can use methodpublic void addEvent(Enum type, EventHandler recipient, String owner, Object content, long deltaTime)
withdeltaTime
set to 1. - start of the semantic versioning