class Octave::Dispatcher::Base

Public Instance Methods

call(_payload) click to toggle source

This method will be called evey time a Payload is dispatched.

# File lib/octave/dispatcher/base.rb, line 5
def call(_payload)
  raise NotImplementedError
end
close() click to toggle source

Close any necessary

# File lib/octave/dispatcher/base.rb, line 10
def close
  true
end