|
NAMEData::Stream::Bulk::Callback - Callback based bulk iterator VERSIONversion 0.11 SYNOPSIS Data::Stream::Bulk::Callback->new(
callback => sub {
if ( @more_items = get_some() ) {
return \@more_items;
} else {
return; # done
}
},
}
DESCRIPTIONThis class provides a callback based implementation of Data::Stream::Bulk. ATTRIBUTES
METHODS
AUTHORYuval Kogman <nothingmuch@woobling.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2012 by Yuval Kogman. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|