1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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
|
# You may distribute under the terms of either the GNU General Public License
# or the Artistic License (the same terms as Perl itself)
#
# (C) Paul Evans, 2011 -- leonerd@leonerd.org.uk
package Net::Async::Tangence 0.16;
use v5.14;
use warnings;
=head1 NAME
C<Net::Async::Tangence> - use C<Tangence> with C<IO::Async>
=head1 DESCRIPTION
This distribution provides concrete implementations of the L<Tangence> base
classes, allowing either servers or clients to be written based on
L<IO::Async>.
To implement a server, see L<Net::Async::Tangence::Server>.
To implement a client, see L<Net::Async::Tangence::Client>.
This module itself does not provide any code, and exists only to provide the
module C<$VERSION> and top-level documentation.
=cut
=head1 SEE ALSO
=over 8
=item *
L<Tangence> - attribute-oriented server/client object remoting framework
=back
=head1 AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
=cut
0x55AA;
|