class Eventkit::TaskScheduler

Public Instance Methods

schedule_execution(&handler) click to toggle source
# File lib/eventkit/task_scheduler.rb, line 3
    def schedule_execution(&handler)
      fail NotImplementedError, <<-DOC
Implement #schedule_execution in your class to schedule
the execution of on_fullfiled and on_rejected handlers
DOC
    end