The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

XS::Framework::Manual::SVAPI::perl_destroy - XF::Framework at_perl_destroy() reference

C++ at_perl_destroy()

    void at_perl_destroy (const panda::function<void()>& f);

Sometimes you need to be notified, when Perl interpreter is about to be destroyed. This is needed when you captured some Perl structures and want to release them properly or invoke other clean-up functions.

This hook function is similar to END block of a perl module, but on C++ layer.

The added hook-functions are executed in the order they added (FIFO). Here is an example:

    at_perl_destroy([](){
        std::cout << "perl interpreter is about to be destoryed\n";
    });

SEE ALSO

XS::Framework

XS::Framework::Manual::SVAPI