logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catmandu::Transactional - Optional role for transactional stores

Methods

transaction($sub)
       "transaction" takes a coderef that will be executed in the context of a transaction. If an error is
       thrown, the transaction will rollback. If the code executes successfully, the transaction will be
       committed. There is no support for nested transactions, nested calls to "transaction" will simply be
       subsumed by their parent transaction.

perl v5.40.0                                       2025-01-17                       Catmandu::Transactional(3pm)

Name

       Catmandu::Transactional - Optional role for transactional stores

Synopsis

           # bag will be untouched
           my $store->transaction(sub {
               $store->bag('books')->add({title => 'Time must have a stop'});
               die;
           });

See Also