This is an automated archive made by the Lemmit Bot.

The original was posted on /r/opensource by /u/cleipnir on 2023-09-12 19:47:05.


Hi all!

I am the proud author of an open-source workflow-as-code dotnet framework Cleipnir.Flows but find it pretty difficult to get traction and collaborators. I suspect this might be because it is a pretty niche field - but not sure, perhaps I am missing something.

A prime use-case for the framework is order-processing, where one must ensure that the order is completely processed despite process restarts/crashes.

For instance, consider the following simplified order flow:

ProcessOrder(Order order)
 PaymentProvider.ReserveFunds
 LogisticsService.ShipProducts
 PaymentProvider.CaptureFunds
 EmailService.SendOrderConfirmation

Please do let me know if you have any feedback, questions or want to collaborate on a highly mature open-source project.