Class: Karousel::ClientJob
- Inherits:
-
Object
- Object
- Karousel::ClientJob
- Defined in:
- lib/karousel/client_job.rb
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.
5 6 7 |
# File 'lib/karousel/client_job.rb', line 5 def initialize @status = 1 end |
Instance Attribute Details
#status ⇒ Object
Returns the value of attribute status.
3 4 5 |
# File 'lib/karousel/client_job.rb', line 3 def status @status end |
Class Method Details
.populate ⇒ Object
9 10 11 |
# File 'lib/karousel/client_job.rb', line 9 def self.populate not_implemented_error end |
Instance Method Details
#finished? ⇒ Boolean
17 18 19 |
# File 'lib/karousel/client_job.rb', line 17 def finished? not_implemented_error end |
#process ⇒ Object
21 22 23 |
# File 'lib/karousel/client_job.rb', line 21 def process not_implemented_error end |
#send ⇒ Object
13 14 15 |
# File 'lib/karousel/client_job.rb', line 13 def send not_implemented_error end |