module Sorta::Transactions::Service::Included
Public Instance Methods
call(opts)
click to toggle source
# File lib/sorta/transactions/service.rb, line 28 def call(opts) Sorta::Transactions::Action.new(self, opts) end
commit(_args)
click to toggle source
# File lib/sorta/transactions/service.rb, line 32 def commit(_args) raise StandardError, 'abstract method' end
rollback(_args)
click to toggle source
# File lib/sorta/transactions/service.rb, line 36 def rollback(_args) raise StandardError, 'abstract method' end