| POEx-URI documentation | Contained in the POEx-URI distribution. |
URI::poe - URI extension for POE urls
use URI;
my $uri = URI->new( "poe://kernelID/session/event" );
Please see POEx::URI for description.
Philip Gwyn, <gwyn -at- cpan.org<gt>
Copyright (C) 2009 by Philip Gwyn
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| 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__