module EM::Synchrony::ActiveRecord::Adapter

def add_transaction_record(record)

can be called.
Register a record with the current transaction so that its after_commit and after_rollback callbacks
def add_transaction_record(record)
  current_transaction.add_record(record)
end