Red Hat Training

A Red Hat training course is available for JBoss Enterprise SOA Platform

15.26. Cron タイマーの例

Cron タイマーは以下のようになります。
rule "Send SMS every 15 minutes"
    timer (cron:* 0/15 * * * ?)
when
    $a : Alarm( on == true )
then
    channels[ "sms" ].insert( new Sms( $a.mobileNumber, "The alarm is still on" );
end