Coro::Specific - manage coroutone-specific variables. |
Coro::Specific - manage coroutone-specific variables.
use Coro::Specific;
my $ref = new Coro::Specific;
$$ref = 5; print $$ref;
This module can be used to create variables (or better: references to them) that are specific to the currently executing coroutine. This module does not automatically load the Coro module (so the overhead will be small when no coroutines are used).
The actual coroutine specific values do not automatically get destroyed when the Coro::Specific object gets destroyed.
Marc Lehmann <pcg@goof.com> http://www.goof.com/pcg/marc/
Coro::Specific - manage coroutone-specific variables. |