|
NAMEUbic::Result::Class - ubic result objectVERSIONversion 1.58SYNOPSISuse Ubic::Result qw(result); my $result = result("already running"); print $result->status; # running print "$result"; # already running DESCRIPTIONUbic::Result::Class instances represent service operation results.Many service actions can *do* something and *result* in something. So, this class dissects service operation into "action()" and "status()". For example, "already running" result means that current service status is "running" and action is "none". Also, it carry custom comment and serialize result into common stringified form. Ubic::Result::Class instances are usually created via "result()" function from Ubic::Result package. STATUSESPossible statuses:
ACTIONSActions are something that was done which resulted in current status by invoked method.Possible actions:
METHODS
SEE ALSOUbic::Result - service action's result.AUTHORVyacheslav Matyukhin <mmcleric@yandex-team.ru>COPYRIGHT AND LICENSEThis software is copyright (c) 2015 by Yandex LLC.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |