The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MongoDBI::Document::Storage::Cursor - MongoDBI Chainable Collection Query Builder

VERSION

version 0.02

SYNOPSIS

    my $cursor = MongoDBI::Document::Storage::Cursor->new( $mongo_cursor );
    
                $cursor->has_next(...)
                $cursor->next(...)
                $cursor->all(...)
    
    See MongoDB::Cursor for more methods.
                MongoDBI::Document::Storage::Cursor supports all methods, via delegation, that MongoDB::Cursor provides.

DESCRIPTION

MongoDBI::Document::Storage::Cursor provides a wrapper around MongoDB::Cursor that allows you to retrieve objects from a MongoDB::Cursor.

AUTHORS

  • Al Newkirk <awncorp@cpan.org>

  • Robert Grimes <buu@erxz.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by awncorp.

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