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

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($xml) = @_; my $feed = XML::Atom::Feed->new(Stream => \$xml); # Note: you'll need XML::Atom >= 0.12_01 to parse Atom 1.0 feed }

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

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.

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