说,我在Active Record模型中有一些公共方法:
def run_async
# some code I do not want to exec while transaction opened
end
我不确定不会从事务中调用此方法。那么有什么方法可以包装它并在事务结束后立即调用吗?像
这样的东西def run_async
after_transaction do
# some code I do not want to exec while transaction opened
end
end