Class: RubyODE::UseCaseDispatcher
- Inherits:
-
Object
- Object
- RubyODE::UseCaseDispatcher
- Defined in:
- lib/ruby_ode/runtime.rb
Instance Method Summary collapse
Instance Method Details
#dispatch(param, use_case) {|output| ... } ⇒ Object
95 96 97 98 99 |
# File 'lib/ruby_ode/runtime.rb', line 95 def dispatch(param, use_case) output = use_case.process(param) yield output if block_given? output end |