Replies: 3 comments 2 replies
-
you may need a elasticsearch extensions to do this,i think |
Beta Was this translation helpful? Give feedback.
-
Guess I'm somewhat late to the party. Would it make sense to create new pull requests? Idea 1: Remove the [Obsolete] attribute from Idea 2: Add a function to purge old workflow instances. (complete or terminated workflows which are older than X days) |
Beta Was this translation helpful? Give feedback.
-
I'm checking out this library, and like it. But exactly this feature, getting all workflow instances of a certain type and status, is something I need (seems like a basic thing), and I don't like to let my application rest upon an obsolete method in a library dependency. Why is it obsolete? I why should you need elasticsearch to retrieve this information? It should be readily retrievable from the persistence provider. I actually tried to add the elasticsearch dependency, but couldn't get it working. I don't want an unnecessary dependency to start with, and point was proven when I couldn't get it to function. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi *
I really like this workflow engine: small & intuitive to use. There's one issue I stumbled over : In
IWorkflowRepository
there exists an API to retrieve all instances at once by setting all query parameters tonull
or""
IWorkflowRepository.cs
BUT this API is marked
obsolete
.The new existing API takes a list if
id
s, which seem to be the GUIDs of the running workflows:As this is exactly the information I'm looking for (IDs of all running instances) I'm stuck now on where to get the information formerly provided by the obsolete API.
Any hints on this?
Beta Was this translation helpful? Give feedback.
All reactions