Class: Karousel::ClientJob

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeClientJob

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

#statusObject

Returns the value of attribute status.



3
4
5
# File 'lib/karousel/client_job.rb', line 3

def status
  @status
end

Class Method Details

.populateObject



9
10
11
# File 'lib/karousel/client_job.rb', line 9

def self.populate
  not_implemented_error
end

Instance Method Details

#finished?Boolean

Returns:

  • (Boolean)


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

def finished?
  not_implemented_error
end

#processObject



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

def process
  not_implemented_error
end

#sendObject



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

def send
  not_implemented_error
end