| Net-Gnip documentation | Contained in the Net-Gnip distribution. |
Net::Gnip::ActivityStream - represent a stream of Gnip Activities
# Create a new stream
my $stream = Net::Gnip::ActivityStream->new();
my $stream = Net::Gnip::ActivityStream->new(publisher => $publisher_name);
# ... or parse from XML
my $stream = Net::Gnip::ActivityStream->parse($xml);
# set the activities
$stream->activities(@activities);
# get the activities
my @activities = $stream->activities;
# or use an iterator
while (my $activity = $stream->next) {
print $activity->uid;
}
$stream->reset;
# ... now you can use it again
while (my $activity = $stream->next) {
print $activity->uid;
}
Create a new, empty stream
Get or set the publisher name of this Activity Stream
Get or set the activities
| Net-Gnip documentation | Contained in the Net-Gnip distribution. |
package Net::Gnip::ActivityStream; use strict; use base qw(Net::Gnip::BaseStream); use Net::Gnip::Activity;
sub publisher { shift->_do('publisher',@_) }
sub activities { my $self = shift; return $self->children(@_); } sub _child_name { 'activity' } sub _elem_name { 'activities' } 1;