Class: Zenaton::Interfaces::Job Abstract
- Inherits:
-
Object
- Object
- Zenaton::Interfaces::Job
- Defined in:
- lib/zenaton/interfaces/job.rb
Overview
This class is abstract.
Do not subclass job directly, use either Tasks or Workflows
Instance Method Summary collapse
-
#handle ⇒ Object
Child classes should implement the handle method.
Instance Method Details
#handle ⇒ Object
Child classes should implement the handle method
11 12 13 |
# File 'lib/zenaton/interfaces/job.rb', line 11 def handle raise NotImplemented, "Your job does not implement the `handle' method" end |