1POE::Resources(3) User Contributed Perl Documentation POE::Resources(3)
2
3
4
6 POE::Resources - loader of POE resources
7
9 # Intended for internal use by POE::Kernel.
10 use POE::Resources;
11 POE::Resources->load();
12
14 POE::Kernel is internally split into different resources that are
15 separately managed by individual mix-in classes.
16
17 POE::Resources is designed as a high-level macro manager for
18 POE::Resource classes. Currently it implements a single method,
19 load(), which loads all the POE::Resource classes.
20
22 POE::Resources has a public interface, but it is intended to be used
23 internally by POE::Kernel. Application programmers should never need
24 to use POE::Resources directly.
25
26 load
27 POE::Kernel calls load() to loads all the known POE::Resource modules.
28
29 Each resource may be handled by a pure perl module, or by an XS module.
30 For each resource class, load() first tries to load the
31 "POE::XS::Resource::..." version of the module. If that fails, load()
32 falls back to "POE::Resource::...".
33
35 See "Resources" in POE::Kernel for public information about POE
36 resources.
37
38 See POE::Resource for general discussion about resources and the
39 classes that manage them.
40
42 Please see POE for more information about its authors, contributors,
43 and POE's licensing.
44
45
46
47perl v5.34.0 2021-07-22 POE::Resources(3)