SOAP-Lite
view release on metacpan or search on metacpan
examples/My/SessionIterator.pm view on Meta::CPAN
package My::SessionIterator;
sub new {
my $self = shift;
my $class = ref($self) || $self;
bless {_num=>shift} => $class;
}
sub next {
my $self = shift;
$self->{_num}++;
}
1;
( run in 1.184 second using v1.01-cache-2.11-cpan-5c0b1e786e0 )