Class: RightSpeed::Processor::Base
- Inherits:
-
Object
- Object
- RightSpeed::Processor::Base
show all
- Defined in:
- lib/right_speed/processor.rb
Instance Method Summary
collapse
Constructor Details
#initialize(workers, handler) ⇒ Base
Returns a new instance of Base.
46
47
48
|
# File 'lib/right_speed/processor.rb', line 46
def initialize(workers, handler)
raise "BUG: use implementation class"
end
|
Instance Method Details
50
51
52
|
# File 'lib/right_speed/processor.rb', line 50
def configure(listener:)
raise "BUG: not implemented"
end
|
#process(conn) ⇒ Object
58
59
60
|
# File 'lib/right_speed/processor.rb', line 58
def process(conn)
raise "BUG: not implemented"
end
|
#run ⇒ Object
54
55
56
|
# File 'lib/right_speed/processor.rb', line 54
def run
raise "BUG: not implemented"
end
|
#wait ⇒ Object
62
63
64
65
66
|
# File 'lib/right_speed/processor.rb', line 62
def wait
raise "BUG: not implemented"
end
|