Method: ActsAsAsync::Helper#async_at
- Defined in:
- lib/acts_as_async/helper.rb
#async_at(time, method, *args) ⇒ Object
52 53 54 55 |
# File 'lib/acts_as_async/helper.rb', line 52 def async_at(time, method, *args) raise MissingIDError unless id Resque.enqueue_at(time, self.class, id, method, *args) end |