GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Progress::Any::Output(3) User Contributed Perl Documentation Progress::Any::Output(3)

Progress::Any::Output - Assign output to progress indicators

This document describes version 0.219 of Progress::Any::Output (from Perl distribution Progress-Any), released on 2020-08-15.

In your application:

 use Progress::Any::Output;
 Progress::Any::Output->set('TermProgressBarColor');

or:

 use Progress::Any::Output 'TermProgressBarColor';

To give parameters to output:

 use Progress::Any::Output;
 Progress::Any::Output->set('TermProgressBarColor', width=>50, ...);

or:

 use Progress::Any::Output 'TermProgressBarColor', width=>50, ...;

To assign output to a certain (sub)task:

 use Progress::Any::Output -task => "main.download", 'TermMessage';

or:

 use Progress::Any::Output;
 Progress::Any::Output->set({task=>'main.download'}, 'TermMessage');

To add additional output, use "add()" instead of "set()".

See Progress::Any for overview.

Set (or replace) output. Will load and instantiate "Progress::Any::Output::$output". To only set output for a certain (sub)task, set %opts to "{ task => $task }". @args will be passed to output module's constructor.

Return the instantiated object.

If $output is an object (a reference, really), it will be used as-is.

Like set(), but will add output instead of replace existing one(s).

Please visit the project's homepage at <https://metacpan.org/release/Progress-Any>.

Source repository is at <https://github.com/perlancar/perl-Progress-Any>.

Please report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Progress-Any>

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

Progress::Any

perlancar <perlancar@cpan.org>

This software is copyright (c) 2020, 2018, 2015, 2014, 2013, 2012 by perlancar@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.

2020-08-15 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.