Class: Karousel::ClientJob

Inherits:
Object
  • Object
show all
Defined in:
lib/karousel/client_job.rb

Overview

Abstract class for ClientJob

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeClientJob

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

#statusObject

Returns the value of attribute status.



6
7
8
# File 'lib/karousel/client_job.rb', line 6

def status
  @status
end

Class Method Details

.populateObject



12
13
14
# File 'lib/karousel/client_job.rb', line 12

def self.populate
  not_implemented_error
end

Instance Method Details

#finished?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/karousel/client_job.rb', line 20

def finished?
  not_implemented_error
end

#processObject



24
25
26
# File 'lib/karousel/client_job.rb', line 24

def process
  not_implemented_error
end

#sendObject



16
17
18
# File 'lib/karousel/client_job.rb', line 16

def send
  not_implemented_error
end