Azure / durabletask

Durable Task Framework allows users to write long running persistent workflows in C# using the async/await capabilities.
Apache License 2.0
1.51k stars 290 forks source link

Do you have any plans to support DSL? #1072

Closed fanslead closed 5 months ago

cgillum commented 5 months ago

No plans to support DSLs. One of the key features of DTFx is writing reliable workflows using general purpose programming languages, like C#.

That said, some teams have built their own DSLs in JSON or YAML, and then used DTFx to build an interpreter for the DSL. So while DTFx doesn't directly support DSLs, it does enable others to build DSLs. Hopefully we can provide some samples of this at some point.