|
NAMEMinion::Iterator - Minion iteratorSYNOPSISuse Minion::Iterator; my $iter = Minion::Iterator->new(minion => $minion, options => {states => ['inactive']}); DESCRIPTIONMinion::Iterator is an iterator for Minion listing methods.ATTRIBUTESMinion::Iterator implements the following attributes.fetchmy $fetch = $iter->fetch; $iter = $iter->fetch(2); Number of results to cache, defaults to 10. minionmy $minion = $iter->minion; $iter = $iter->minion(Minion->new); Minion object this job belongs to. optionsmy $options = $iter->options; $iter = $iter->options({states => ['inactive']}); Options to be passed to "list_jobs" in Minion::Backend or "list_workers" in Minion::Backend. METHODSMinion::Iterator inherits all methods from Mojo::Base and implements the following new ones.each$iter->each(sub {...}); Evaluate callback for each element in collection. The element will be the first argument passed to the callback, and is also available as $_. nextmy $value = $iter->next; Get next value. totalmy $num = $iter->total; Total number of results. If results are removed in the backend while iterating, this number will become an estimate that gets updated every time new results are fetched. SEE ALSOMinion, Minion::Guide, <https://minion.pm>, Mojolicious::Guides, <https://mojolicious.org>.
Visit the GSP FreeBSD Man Page Interface. |