Class: Karousel::ClientJob
- Inherits:
-
Object
- Object
- Karousel::ClientJob
- Defined in:
- lib/karousel/client_job.rb
Overview
Abstract class for ClientJob
Instance Attribute Summary collapse
-
#status ⇒ Object
Returns the value of attribute status.
Class Method Summary collapse
Instance Method Summary collapse
- #finished? ⇒ Boolean
-
#initialize ⇒ ClientJob
constructor
A new instance of ClientJob.
- #process ⇒ Object
- #send ⇒ Object
Constructor Details
#initialize ⇒ ClientJob
Returns a new instance of ClientJob.
8 9 10 |
# File 'lib/karousel/client_job.rb', line 8 def initialize @status = 1 end |
Instance Attribute Details
#status ⇒ Object
Returns the value of attribute status.
6 7 8 |
# File 'lib/karousel/client_job.rb', line 6 def status @status end |
Class Method Details
.populate ⇒ Object
12 13 14 |
# File 'lib/karousel/client_job.rb', line 12 def self.populate not_implemented_error end |
Instance Method Details
#finished? ⇒ Boolean
20 21 22 |
# File 'lib/karousel/client_job.rb', line 20 def finished? not_implemented_error end |
#process ⇒ Object
24 25 26 |
# File 'lib/karousel/client_job.rb', line 24 def process not_implemented_error end |
#send ⇒ Object
16 17 18 |
# File 'lib/karousel/client_job.rb', line 16 def send not_implemented_error end |