Class: MiniCamel::Processor::Pipeline

Inherits:
Base
  • Object
show all
Defined in:
lib/mini_camel/processor/pipeline.rb

Instance Method Summary collapse

Instance Method Details

#call(exchange) ⇒ Object



9
10
11
12
13
# File 'lib/mini_camel/processor/pipeline.rb', line 9

def call(exchange)
  routes.each do |route|
    env.call_route(route, exchange)
  end
end