| Class | OpenWFE::AtJob |
| In: |
lib/openwfe/util/scheduler.rb
|
| Parent: | Job |
An ‘at’ job.
| at | [RW] | The float representation (Time.to_f) of the time at which the job should be triggered. |
The constructor.
# File lib/openwfe/util/scheduler.rb, line 1047
1047: def initialize (scheduler, at, at_id, params, &block)
1048:
1049: super(scheduler, at_id, params, &block)
1050: @at = at
1051: end