Acme-Spinner

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Acme-Spinner
 
This is a simple module that helps manage one of those silly spinning
bar things that some programs use when they want you to think they
are busy.
 
INSTALLATION
 
To install this module, run the following commands:
 
        perl Makefile.PL
        make
        make test
        make install

lib/Acme/Spinner.pm  view on Meta::CPAN

22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
    my $s = Acme::Spinner->new();
    while(<>) {
        print STDERR $s->next(), "\r";
        do_interesting_stuff( with => $_ );
    }
 
=head1 ABSTRACT
 
This is a simple module that helps manage one of those silly spinning
bar things that some programs use when they want you to think they
are busy.
 
=head1 DESCRIPTION
 
Some programs take a long time to do some functions.  Sometimes
people are get confused about what is happening and start pressing
buttons in an effort to illicit some response while a program is
taking a long time.  Strangely enough if the program gives the
person using it something to watch while it is busy with other work
the person is much more likely to leave the program alone so that
can finish its work.
 
=head1 METHODS
 
=head2 new
 
The creator.
 
=cut



( run in 0.239 second using v1.01-cache-2.11-cpan-0f795438458 )