POE::Component::BlogCloud::Update - Represents an update to a weblog


POE-Component-BlogCloud documentation Contained in the POE-Component-BlogCloud distribution.

Index


Code Index:

NAME

Top

POE::Component::BlogCloud::Update - Represents an update to a weblog

SYNOPSIS

Top

    ## In a ReceivedUpdate handler...
    my($update) = $_[ ARG0 ];
    print "Weblog ", $update->uri, " updated at ", $update->updated_at, "\n";

DESCRIPTION

Top

POE::Component::BlogCloud::Update represents an update to a weblog received through the blo.gs streaming cloud server.

USAGE

Top

$update->uri

The URI of the weblog.

$update->name

The name of the weblog.

$update->feed_uri

The feed URI for the weblog.

$update->updated_at

A DateTime object representing the date and time at which the weblog was updated.

$update->service

The service through which the update was found.

AUTHOR & COPYRIGHT

Top


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__