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

KiokuDB::LiveObjects::Scope - Scope helper object

Author

       Yuval Kogman <nothingmuch@woobling.org>

Description

       Live object scopes exist in order to ensure objects don't die too soon if the only other references to
       them are weak.

       When scopes are destroyed the refcounts of the objects they refer to go down, and the parent scope is
       replaced in the live object set.

Methods

       push
           Adds objects or entries, increasing their reference count.

       clear
           Clears the objects from the scope object.

       detach
           Marks this scope as no longer the "current" live object scope, if it is the current one.

           This allows keeping branching of scopes, which can be useful under long running applications.

       remove
           Effectively kills the scope by clearing it and removing it from the live object set.

Name

       KiokuDB::LiveObjects::Scope - Scope helper object

Synopsis

           {
               my $scope = $dir->new_scope;

               ... do work on $dir ...
           }

Version

       version 0.57

See Also