Ignore:
Timestamp:
01/17/10 12:29:46 (3 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
6822839
Parents:
cc2efd6
Message:

Finnished Scheduler and added basic "Notify" support (no sinks yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/Scheduler/simple_scheduler.cpp

    r753ea6d r1bfe6f0  
    9393      if (item) { 
    9494        try { 
    95           execute(*item); 
     95          if (handler_) 
     96            handler_->handle_schedule(*item); 
    9697          reschedule(*item,now_time); 
    9798        } catch (...) { 
     
    120121    start_thread(); 
    121122  } 
    122   void simple_scheduler::execute(target item) { 
    123     //std::wcout << _T("Running: ") << item.command << std::endl; 
    124   } 
    125  
    126123} 
    127124 
Note: See TracChangeset for help on using the changeset viewer.