Oleg Agapov
12/17/2020, 5:42 PMtask1 >> task2 >> task3
My solids are kinda stateless (don't return any values), but their order is important.sandy
12/17/2020, 5:43 PMdwall
12/17/2020, 5:45 PMNothing
- one thing I thought about the other day is that this will probably be a pretty common pattern in the long term (using Nothing
to model task ordering dependencies between solids), so do you think it's worth establishing best practices around nomeclature for these types of inputs and outputs?Oleg Agapov
12/17/2020, 5:45 PMdf.pipe(transform1).pipe(transform2)
?
so to have
solid1.pipe(solid2).pipe(solid3)
solid10(solid9(...solid1()))
I'm trying to make it more visual and usablemax
12/17/2020, 7:17 PMsolid10.after(solid9)
etc, but obviously that doesn't reverse the order like pipe
mrdavidlaing
12/21/2020, 3:23 PMmax
12/21/2020, 6:56 PM