Class: ActiveCrew::Backends::InlineBackend::Queue
- Inherits:
-
Object
- Object
- ActiveCrew::Backends::InlineBackend::Queue
show all
- Defined in:
- lib/active_crew/backends/inline_backend.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
9
10
11
12
13
|
# File 'lib/active_crew/backends/inline_backend.rb', line 9
def method_missing(method, *args, &block)
return unless respond_to? method
super method, *args, &block
end
|
Instance Method Details
#size ⇒ Object
5
6
7
|
# File 'lib/active_crew/backends/inline_backend.rb', line 5
def size
0
end
|