Dustin Metzgar

Results 13 comments of Dustin Metzgar

Thanks @orosandrei!

It's possible, just difficult. The VB compiler used in WF in the .NET Framework is actually an old VB6 compiler built in native code. To use a different language you...

@Lil-Moune you could look at how this is done in .NET Framework. The VB compiler is an implementation of HostedCompiler and System.Activities has a wrapper for it: https://referencesource.microsoft.com/#System.Activities/Microsoft/VisualBasic/Activities/VisualBasicHelper.cs,3a2ce353f63e3380 The actual...

It looks like this will require some work on the server since only GetHistory currently supports not supplying a runid. We could expose a way to get the current runid...

With the new memo feature (https://github.com/uber/cadence/pull/1663) we don't need to execute a query per workflow in the list. This issue should be repurposed to show the memos in the list.

I take issue with this because we are duplicating documentation. For instance, we don't need the`--gd` flag anymore and now I have to change that in two places.

I'm also a bit confused on why there is an `AsyncTaskCodeActivity` and a `TaskCodeActivity`. The latter implies that I could have a synchronous activity that executes a Task or perhaps...

Just writing to let you know I saw your comment. I'd have to look into it a bit to have a detailed guide. OTMH, the following are not supported: -...

Looking forward to seeing your implementation! It should be an interesting challenge. Please find the source code of SqlWorkflowInstanceStore here: https://referencesource.microsoft.com/#System.Activities.DurableInstancing/System/Activities/DurableInstancing/SqlWorkflowInstanceStore.cs Also have a look at the instance store documentation...

The code for TypedCompletedAsyncResult is in the JsonFileInstanceStore example. Rather than try to understand the older IAsyncResult pattern, I suggest using the Nito.AsyncEx library to convert to/from TPL (Task-based). Take...