NAME

Langertha::Raid::Sequential - Sequential Raid orchestrator

VERSION

version 0.305

SYNOPSIS

my $raid = Langertha::Raid::Sequential->new(
  steps => [ $step1, $step2, $step3 ],
);

my $result = await $raid->run_f($ctx);

DESCRIPTION

Runs child steps in strict order and forwards one shared context through all steps. Final outputs update context input for downstream steps. Non-final results (question/pause/abort) are propagated immediately.

run_f

my $result = await $raid->run_f($ctx);

Executes all steps sequentially with shared context propagation.

SUPPORT

Issues

Please report bugs and feature requests on GitHub at https://github.com/Getty/langertha/issues.

CONTRIBUTING

Contributions are welcome! Please fork the repository and submit a pull request.

AUTHOR

Torsten Raudssus <torsten@raudssus.de> https://raudss.us/

COPYRIGHT AND LICENSE

This software is copyright (c) 2026 by Torsten Raudssus.

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