NAME

XML::Atom::Stream - A client interface for AtomStream

SYNOPSIS

use XML::Atom::Stream;

my $url = "http://danga.com:8081/atom-stream.xml";

my $client = XML::Atom::Stream->new(
    callback => \&callback,
);
$client->connect($url);

sub callback {
    my($atom) = @_;
    # $atom is a XML::Atom::Feed object
}

DESCRIPTION

XML::Atom::Stream is a consumer of AtomStream.

AUTHOR

Tatsuhiko Miyagawa <miyagawa@bulknews.net> with tips from Benjamin Trott and Brad Fitzpatrick.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

XML::Atom, XML::Atom::Filter, http://www.livejournal.com/users/brad/2143713.html