| POE-Component-BlogCloud documentation | Contained in the POE-Component-BlogCloud distribution. |
POE::Component::BlogCloud::Update - Represents an update to a weblog
## In a ReceivedUpdate handler...
my($update) = $_[ ARG0 ];
print "Weblog ", $update->uri, " updated at ", $update->updated_at, "\n";
POE::Component::BlogCloud::Update represents an update to a weblog received through the blo.gs streaming cloud server.
The URI of the weblog.
The name of the weblog.
The feed URI for the weblog.
A DateTime object representing the date and time at which the weblog was updated.
The service through which the update was found.
Please see the POE::Component::BlogCloud manpage for author, copyright, and license information.
| POE-Component-BlogCloud documentation | Contained in the POE-Component-BlogCloud distribution. |
# $Id: Update.pm 1783 2005-01-09 05:44:52Z btrott $ package POE::Component::BlogCloud::Update; use strict; use base qw( Class::Accessor ); __PACKAGE__->mk_accessors(qw( uri name service feed_uri updated_at )); 1; __END__