File: README

package info (click to toggle)
libmoox-singleton-perl 1.20-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 152 kB
  • ctags: 4
  • sloc: perl: 104; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 1,152 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
NAME
    MooX::Singleton - turn your Moo class into singleton

VERSION
    version 1.20

SYNOPSIS
        package MyApp;
        use Moo;
        with 'MooX::Singleton';

        package main;

        my $instance = MyApp->instance(@optional_init_args);
        my $same = MyApp->instance;

DESCRIPTION
    Role::Tiny role that provides "instance" method turning your object into
    singleton.

METHODS
  instance
        my $singleton = MyApp->instance(@args1);
        my $same = MyApp->instance;
        # @args2 are ignored
        my $above = MyApp->instance(@args2);

    Creates a new object initialized with arguments provided and then
    returns it.

    NOTE: Subsequent calls to "instance" will return the singleton instance
    ignoring any arguments. This is different from MooseX::Singleton which
    does not allow any arguments.

AUTHOR
    Alex J. G. Burzyński <ajgb@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2012 by Alex J. G. Burzyński
    <ajgb@cpan.org>.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.