URI::poe - URI extension for POE urls


POEx-URI documentation Contained in the POEx-URI distribution.

Index


Code Index:

NAME

Top

URI::poe - URI extension for POE urls

SYNOPSIS

Top

    use URI;
    my $uri = URI->new( "poe://kernelID/session/event" );




DESCRIPTION

Top

Please see POEx::URI for description.

SEE ALSO

Top

URI, POEx::URI.

AUTHOR

Top

Philip Gwyn, <gwyn -at- cpan.org<gt>

COPYRIGHT AND LICENSE

Top


POEx-URI documentation Contained in the POEx-URI distribution.

package URI::poe;

use strict;
use warnings;

use POEx::URI;

use vars qw( @ISA );

@ISA = qw( POEx::URI );

1;
__END__