Package org.drools.process.instance.timer.TimerManager

Examples of org.drools.process.instance.timer.TimerManager.TimerTrigger


     *            The working memory session.
     */
    void scheduleAgendaItem(final ScheduledAgendaItem item, InternalAgenda agenda) {
        DuractionJob job = new DuractionJob();       
        DuractionJobContext ctx = new DuractionJobContext( item, agenda );
        TimerTrigger trigger = new TimerTrigger( item.getRule().getDuration().getDuration( item.getTuple() ), 0);
       
       
        JobHandle jobHandle = this.timerService.scheduleJob( job, ctx, trigger );
        item.setJobHandle( jobHandle );
    }
View Full Code Here

TOP

Related Classes of org.drools.process.instance.timer.TimerManager.TimerTrigger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.