Net::Gnip::ActivityStream - represent a stream of Gnip Activities


Net-Gnip documentation Contained in the Net-Gnip distribution.

Index


Code Index:

NAME

Top

Net::Gnip::ActivityStream - represent a stream of Gnip Activities

SYNOPIS

Top



    # 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;
    }










METHODS

Top

new

Create a new, empty stream

publisher [publisher name]

Get or set the publisher name of this Activity Stream

activities [activity[s]]

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;