Skip to content

Instantly share code, notes, and snippets.

@DuncanDoyle
Created November 19, 2015 15:18
Show Gist options
  • Save DuncanDoyle/e68de9449d3762004840 to your computer and use it in GitHub Desktop.
Save DuncanDoyle/e68de9449d3762004840 to your computer and use it in GitHub Desktop.
rule "SimpleEvent_retract"
when
$s: SimpleEvent()
$clock: SessionClock(currentTime after [300s] $s.timestamp)
then
System.out.println("Retracting event: " + $s.getId());
System.out.println("Current clock-time: " + $clock.getCurrentTime());
retract($s);
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment