Hoppy::Service::Base - Base class of Hoppy::Service.


Hoppy documentation Contained in the Hoppy distribution.

Index


Code Index:

NAME

Top

Hoppy::Service::Base - Base class of Hoppy::Service.

SYNOPSIS

Top

  package My::Service::Class;
  use base qw(Hoppy::Service::Base);

DESCRIPTION

Top

Base class of Hoppy::Service.

Derived classes of Hoppy::Serivce::Base must implement work() method.

METHODS

Top

AUTHOR

Top

Takeshi Miki <miki@cpan.org>

LICENSE

Top

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

SEE ALSO

Top


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__