class IbRubyProxy::Client::IbCallbacksObserver

Base observer for callbacks received by {IbRubyProxy::Server::IbWrapperAdapter}

This class is meant to be extended by implementing the methods for the callbacks you are interested in

Public Instance Methods

error(*arguments) click to toggle source
# File lib/ib_ruby_proxy/client/ib_callbacks_observer.rb, line 19
def error(*arguments)
  logger.error 'Error received in ib wrapper:'
  logger.error arguments.inspect
end
update(*params) click to toggle source
# File lib/ib_ruby_proxy/client/ib_callbacks_observer.rb, line 14
def update(*params)
  method_name, *arguments = params
  send method_name, *arguments
end