Class: Zenaton::Interfaces::Job Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/zenaton/interfaces/job.rb

Overview

This class is abstract.

Do not subclass job directly, use either Tasks or Workflows

Direct Known Subclasses

Task, Workflow

Instance Method Summary collapse

Instance Method Details

#handleObject

Child classes should implement the handle method

Raises:



11
12
13
# File 'lib/zenaton/interfaces/job.rb', line 11

def handle
  raise NotImplemented, "Your job does not implement the `handle' method"
end