Samuel Lampa
Samuel Lampa
Make it possible to configure a custom way to detect if a task is complete, by a custom complete() method or similar.
See [this slide](https://talks.golang.org/2012/10things.slide#8) for pointers.
Could be done with
Look at the `merge()` function [here](https://blog.golang.org/pipelines) for an example of how to do this. This should be able to simplify the highly complex and fragile code on [these lines](https://github.com/scipipe/scipipe/blob/18a0c25c1acca512831e25422b0d4e722401ecba/process.go#L283-L309).
_Support Scatter operation:_ Produce more than one input per task (sub-stream) Right now, a task produces only one output target per out-port. We need to be able to sometimes produce...
As the API is stabilizing, and scipipe is getting used in real life projects, we need to provide a versioning strategy that allows importing the library from an import point...
The new functionality outlined in #45 among others, should make it possible to create a method to allow previewing the outputs of a pipeline, for example by doing this (assumed...
Hi, I realize that every time I stumble in back on this page:  ... before reading the text on the page, I think I got into an unfinished page...
Allow chaining WorkflowTask tasks together. Might not be fully possible yet.