| Hoppy documentation | Contained in the Hoppy distribution. |
Hoppy::Service::Base - Base class of Hoppy::Service.
package My::Service::Class; use base qw(Hoppy::Service::Base);
Base class of Hoppy::Service.
Derived classes of Hoppy::Serivce::Base must implement work() method.
Takeshi Miki <miki@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Hoppy documentation | Contained in the Hoppy distribution. |
package Hoppy::Service::Base; use strict; use warnings; use base qw(Hoppy::Base); __PACKAGE__->mk_virtual_methods($_) for qw( work ); 1; __END__