Iterator-Flex
view release on metacpan or search on metacpan
lib/Iterator/Flex/Role/Exhaustion/Throw.pm view on Meta::CPAN
package Iterator::Flex::Role::Exhaustion::Throw;
# ABSTRACT: signal exhaustion by setting exhausted flag and throwing;
use v5.28;
use strict;
use warnings;
our $VERSION = '0.34';
use Ref::Util;
use Iterator::Flex::Utils qw( :default REG_GENERAL REG_GP_EXHAUSTION );
use Role::Tiny;
use experimental 'signatures';
use namespace::clean;
sub signal_exhaustion ( $self, @ ) {
$self->set_exhausted;
my $exception = $REGISTRY{ refaddr $self }[REG_GENERAL][REG_GP_EXHAUSTION][1];
$exception->() if Ref::Util::is_coderef( $exception );
require Iterator::Flex::Failure;
Iterator::Flex::Failure::Exhausted->throw;
}
1;
#
# This file is part of Iterator-Flex
#
# This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory.
#
# This is free software, licensed under:
#
# The GNU General Public License, Version 3, June 2007
#
__END__
=pod
=for :stopwords Diab Jerius Smithsonian Astrophysical Observatory
=head1 NAME
Iterator::Flex::Role::Exhaustion::Throw - signal exhaustion by setting exhausted flag and throwing;
=head1 VERSION
version 0.34
=head1 METHODS
=head2 signal_exhaustion
$iterator->signal_exhaustion;
Signal that the iterator is exhausted. This version sets the
iterator's exhausted flag and throws an exception.
=head1 SUPPORT
=head2 Bugs
Please report any bugs or feature requests to bug-iterator-flex@rt.cpan.org or through the web interface at: L<https://rt.cpan.org/Public/Dist/Display.html?Name=Iterator-Flex>
=head2 Source
Source is available at
https://gitlab.com/djerius/iterator-flex
and may be cloned from
https://gitlab.com/djerius/iterator-flex.git
=head1 SEE ALSO
Please see those modules/websites for more information related to this module.
( run in 1.017 second using v1.01-cache-2.11-cpan-0b5f733616e )