Class: Gorgon::JobDefinition
- Inherits:
-
Object
- Object
- Gorgon::JobDefinition
- Defined in:
- lib/gorgon/job_definition.rb
Instance Attribute Summary collapse
-
#callbacks ⇒ Object
Returns the value of attribute callbacks.
-
#file_queue_name ⇒ Object
Returns the value of attribute file_queue_name.
-
#reply_exchange_name ⇒ Object
Returns the value of attribute reply_exchange_name.
-
#sync ⇒ Object
Returns the value of attribute sync.
Instance Method Summary collapse
-
#initialize(opts = {}) ⇒ JobDefinition
constructor
A new instance of JobDefinition.
- #to_json ⇒ Object
Constructor Details
#initialize(opts = {}) ⇒ JobDefinition
Returns a new instance of JobDefinition.
7 8 9 10 11 12 |
# File 'lib/gorgon/job_definition.rb', line 7 def initialize(opts={}) @file_queue_name = opts[:file_queue_name] @reply_exchange_name = opts[:reply_exchange_name] @callbacks = opts[:callbacks] @sync = opts[:sync] end |
Instance Attribute Details
#callbacks ⇒ Object
Returns the value of attribute callbacks.
5 6 7 |
# File 'lib/gorgon/job_definition.rb', line 5 def callbacks @callbacks end |
#file_queue_name ⇒ Object
Returns the value of attribute file_queue_name.
5 6 7 |
# File 'lib/gorgon/job_definition.rb', line 5 def file_queue_name @file_queue_name end |
#reply_exchange_name ⇒ Object
Returns the value of attribute reply_exchange_name.
5 6 7 |
# File 'lib/gorgon/job_definition.rb', line 5 def reply_exchange_name @reply_exchange_name end |
#sync ⇒ Object
Returns the value of attribute sync.
5 6 7 |
# File 'lib/gorgon/job_definition.rb', line 5 def sync @sync end |
Instance Method Details
#to_json ⇒ Object
14 15 16 |
# File 'lib/gorgon/job_definition.rb', line 14 def to_json Yajl::Encoder.encode(to_hash) end |