module SipgateIo::EventProcessor

Public Instance Methods

process() click to toggle source
# File lib/sipgate_io/event_processor.rb, line 4
def process
  processor_class.new(self).public_send(processor_method)
end

Private Instance Methods

process_event(event) click to toggle source
# File lib/sipgate_io/event_processor.rb, line 12
def process_event(event)
  processor_class.new(event).public_send(processor_method)
end
sipgate_io_configuration() click to toggle source
# File lib/sipgate_io/event_processor.rb, line 16
def sipgate_io_configuration
  SipgateIo.configuration
end