https://github.com/rlch/pipeline
https://github.com/rlch/pipeline
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rlch/pipeline
- Owner: rlch
- Created: 2022-03-23T09:18:22.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-23T09:19:55.000Z (about 3 years ago)
- Last Synced: 2025-01-16T22:47:06.751Z (5 months ago)
- Language: Dart
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Pipeline
Defines a queue of `PipelineTask`'s to be executed, with the output of the previous task
being the input to the next. The `PipelineTask`'s are executed in the order they are added.A `PipelineTask` may be added to the queue by calling `next()`, and returns a `Pipeline`
where `T` is the output of the previously added `PipelineTask`.