Class: TallyJobs::CounterStore::Base
- Inherits:
-
Object
- Object
- TallyJobs::CounterStore::Base
show all
- Defined in:
- lib/tally_jobs/counter_store.rb
Instance Method Summary
collapse
Instance Method Details
#clear ⇒ Object
14
15
|
# File 'lib/tally_jobs/counter_store.rb', line 14
def clear
end
|
#dequeue(n = 1) ⇒ Object
8
9
|
# File 'lib/tally_jobs/counter_store.rb', line 8
def dequeue(n = 1)
end
|
#empty? ⇒ Boolean
11
12
|
# File 'lib/tally_jobs/counter_store.rb', line 11
def empty?
end
|
#enqueue(job_clazz, *params) ⇒ Object
5
6
|
# File 'lib/tally_jobs/counter_store.rb', line 5
def enqueue(job_clazz, *params)
end
|