module EM::Synchrony::ActiveRecord::Adapter_4_2

Public Instance Methods

configure_connection() click to toggle source
# File lib/em-synchrony/activerecord_4_2.rb, line 6
def configure_connection
  nil
end
transaction(*args) click to toggle source
Calls superclass method
# File lib/em-synchrony/activerecord_4_2.rb, line 10
def transaction(*args)
  @connection.execute(false) do |conn|
    super
  end
end